/Mask-R-CNN

Explaining the differences between traditional image classification, object detection, semantic segmentation, and instance segmentation is best done visually. When performing traditional image classification our goal is to predict a set of labels to characterize the contents of an input image (top-left). Object detection builds on image classification, but this time allows us to localize each object in an image. The image is now characterized by: Bounding box (x, y)-coordinates for each object An associated class label for each bounding box.Instance segmentation algorithms, on the other hand, compute a pixel-wise mask for every object in the image, even if the objects are of the same class label (bottom-right). Here you can see that each of the cubes has their own unique color, implying that our instance segmentation algorithm not only localized each individual cube but predicted their boundaries as well.

Primary LanguagePython

This repository is not active