Skip to content

Latest commit

 

History

History
26 lines (19 loc) · 1.97 KB

README.md

File metadata and controls

26 lines (19 loc) · 1.97 KB

Deep Learning

Deep learning study notes

Image Segmentation with Mask R-CNN

You can automatically segment and construct pixel-wise masks for every object in an image, thereby to segment the foreground object from the background. We just need perform instance segmentation using the Mask-RCNN architecture.

Difference between semantic segmentation and instance segmentation

Semantic Segmentation: require us to associate every pixel in an input image with a class label (including background). Instance Segmentation: compute a pixel-wise mask for every object in the image, even if the objects in the same class.

The Mask R-CNN we are using here were trained on the COCO dataset, which has L=90, thus the resulting volumn size from the mask module of the Mask R-CNN is 1009015*15

Configuration

RNN

  1. Udemy: Deep Learning A-Z™: Hands-On Artificial Neural Networks

Dataset

SuperDataScience Deep Learning A-Z™: Download Practice Datasets(https://www.superdatascience.com/pages/deep-learning)