Skip to content

Latest commit

 

History

History
22 lines (17 loc) · 857 Bytes

Segmentation_Readme.md

File metadata and controls

22 lines (17 loc) · 857 Bytes

About Segmentation Algorithm

We have implement a CNN based Segmentation algorithm which is capable of giving binary class for every person. At the output end of this algorithm, we will have a floating point value between 0 to 1 for every single pixel in the image. We will pre-define a specific threshold value and if a particular pixel is less than that value, then we will consider it as a background.

Alt Text

#Location of Code The code that implements the above mentioned Segmentation algorithm is located in

code/python_background_pipeline/net/segnet.py

Code Description

Classes

  1. ResidualDenseBlock():

  2. SegMattingNet()

Reference