CVJun 14, 2019

Instance Segmentation with Point Supervision

arXiv:1906.06392v122 citations
AI Analysis

This addresses the annotation cost problem for computer vision researchers and practitioners, offering a more efficient approach but is incremental as it builds on existing weakly-supervised methods.

The paper tackles the problem of instance segmentation by reducing the need for costly per-pixel labels, proposing a method that uses only point-level annotations and achieves competitive results compared to fully-supervised methods in certain scenarios, with performance evaluated on datasets like PASCAL VOC and COCO.

Instance segmentation methods often require costly per-pixel labels. We propose a method that only requires point-level annotations. During training, the model only has access to a single pixel label per object, yet the task is to output full segmentation masks. To address this challenge, we construct a network with two branches: (1) a localization network (L-Net) that predicts the location of each object; and (2) an embedding network (E-Net) that learns an embedding space where pixels of the same object are close. The segmentation masks for the located objects are obtained by grouping pixels with similar embeddings. At training time, while L-Net only requires point-level annotations, E-Net uses pseudo-labels generated by a class-agnostic object proposal method. We evaluate our approach on PASCAL VOC, COCO, KITTI and CityScapes datasets. The experiments show that our method (1) obtains competitive results compared to fully-supervised methods in certain scenarios; (2) outperforms fully- and weakly- supervised methods with a fixed annotation budget; and (3) is a first strong baseline for instance segmentation with point-level supervision.

Foundations

The foundational work for this paper's niche, ranked by how specifically the neighbourhood builds on it — not by global fame.

Your Notes