Image Segmentation
In the previous chapter, we learned about detecting objects present in images, along with the classes that correspond to the detected objects. In this chapter, we will go one step further by not only drawing a bounding box around an object but also by identifying the exact pixels that contain the object. In addition to that, by the end of this chapter, we will be able to single out instances/objects that belong to the same class.
We will also learn about semantic segmentation and instance segmentation by looking at the U-Net and Mask R-CNN architectures. Specifically, we will cover the following topics:
- Exploring the U-Net architecture
- Implementing semantic segmentation using U-Net to segment objects on a road
- Exploring the Mask R-CNN architecture
- Implementing instance segmentation using Mask R-CNN to identify multiple instances of a given class
A succinct illustration of what we are trying to achieve through image segmentation...