-
Book Overview & Buying
-
Table Of Contents
Hands-On Computer Vision with Detectron2
By :
Panoptic literally means “everything visible in the image.” In other words, it can be viewed as a combination of common computer vision tasks such as instance segmentation and semantic segmentation. It helps to show the unified and global view of segmentation. Generally, it classifies objects in an image into foreground objects (that have proper geometries) and background objects (that do not have appropriate geometries but are textures or materials). The following sections detail the steps to develop a panoptic segmentation application using Detectron2 pre-trained models.
Detectron2 provides several pre-trained models for panoptic segmentation tasks. For instance, Figure 2.9 shows the list of panoptic segmentation models trained on the COCO Panoptic Segmentation dataset.
Figure 2.9: COCO Panoptic Segmentation baselines with panoptic FPN
This specific application...