Skip to content

Latest commit

 

History

History
26 lines (17 loc) · 1.15 KB

spatial_embedding.md

File metadata and controls

26 lines (17 loc) · 1.15 KB

July 2020

tl;dr: Single stage instance segmentation with bottom-up approach.

Overall impression

Overall performance is not that great compared to other approaches. This forms the foundation of PointTrack.

PointTrack uses a single stage instance segmentation method with a seeding location. This makes it compatible with many instance segmentation method, such as CenterMask or BlendMask.

The visualization of instance distance map looks great.

Key ideas

  • SpatialEmbedding predicts
    • a seed map (similar to the heatmap in CenterNet or FCOS
    • a sigma map to predict clustering bandwith (learned, largely proportional to bbox size)
    • offset map for each pixel pointing to the instance center

Technical details

  • Summary of technical details

Notes

  • Questions and notes on how to improve/revise the current work