Explo PPT
Explo PPT
presentation
Over the last few years, Deep Learning models have introduced a new
segment of image segmentation models with remarkable performance
improvements. Deep Learning based image segmentation models often
achieve the best accuracy rates on popular benchmarks, resulting in a
SEGNEt
SegNet is a convolutional neural network (CNN)
architecture designed for semantic segmentation
in computer vision. Semantic segmentation is the
task of classifying each pixel in an image into a
specific category or class, such as identifying
objects and their boundaries. SegNet is one of the
many deep-learning architectures developed to
tackle this problem.
At the decoder, upsampling and
convolutions are performed. At
the end, there is softmax classifier
for each pixel.
During upsampling, the max
pooling indices at the
corresponding encoder layer are
recalled to upsample as shown
above.
Finally, a K-class softmax
classifier is used to predict the
class for each pixel.
FCN
FCN SUMMARY
1. Replacing all fully-connected leyers with
convolution
2. Upsampling by Backwards convolution , a.k.a
deconvolution (and bilinear upsampling)
3. Applied skip connection to use local ,apperence
information in final layer
UNET
U-Net gets its name from its
architecture. The “U” shaped
model comprises convolutional
layers and two networks. First is
the encoder, which is followed
by the decoder.
Thank
You