Sognet

SOGNet: Scene Overlap Graph Network for Panoptic Segmentation
Alternatives To Sognet
Project NameStarsDownloadsRepos Using ThisPackages Using ThisMost Recent CommitTotal ReleasesLatest ReleaseOpen IssuesLicenseLanguage
Nnproject_deepmask188
7 years ago7Python
Deep Neural Network for object segmentation.
3dgnn_pytorch142
4 years ago14mitPython
3D Graph Neural Networks for RGBD Semantic Segmentation
Ai Paper Drawer88
2 years ago
人工智能论文关键点集结。This project aims to collect key points of AI papers.
Gacnet82
4 years ago7Python
Pytorch implementation of 'Graph Attention Convolution for Point Cloud Segmentation'
Pegbis71
3 years ago3Python
Python implementation of "Efficient Graph-Based Image Segmentation" paper
Graphcut69
6 years ago2Python
Graph cut image segmentation with custom GUI.
Imcut61312 years ago73June 14, 201810bsd-3-clausePython
3D graph cut segmentation
Sognet53
2 years ago3Python
SOGNet: Scene Overlap Graph Network for Panoptic Segmentation
Graphmemvos43
3 years ago3Python
Video Object Segmentation with Episodic Graph Memory Networks (ECCV2020 spotlight)
Rgcnn39
5 years ago2apache-2.0Python
Regularized Graph CNN for Point Cloud Segmentation
Alternatives To Sognet
Select To Compare


Alternative Project Comparisons
Readme

Attention!!!

We have made the detectron2-based code public. But there are still some bugs in it. We will fix them as soon as possible.

SOGNet

This repository is for SOGNet: Scene Overlap Graph Network for Panoptic Segmentation which has been accepted by AAAI2020 and won the Innovation Award in COCO 2019 challenge,

by Yibo Yang, Hongyang Li, Xia Li, Qijie Zhao, Jianlong Wu, Zhouchen Lin

This repo is modified from UPSNet. We have been transfering the code into detectron2 framework. Not finished yet.

Introduction

The panoptic segmentation task requires a unified result from semantic and instance segmentation outputs that may contain overlaps. However, current studies widely ignore modeling overlaps. In this study, we aim to model overlap relations among instances and resolve them for panoptic segmentation. Inspired by scene graph representation, we formulate the overlapping problem as a simplified case, named scene overlap graph. We leverage each object's category, geometry and appearance features to perform relational embedding, and output a relation matrix that encodes overlap relations. In order to overcome the lack of supervision, we introduce a differentiable module to resolve the overlap between any pair of instances. The mask logits after removing overlaps are fed into per-pixel instance id classification, which leverages the panoptic supervision to assist in the modeling of overlap relations. Besides, we generate an approximate ground truth of overlap relations as the weak supervision, to quantify the accuracy of overlap relations predicted by our method. Experiments on COCO and Cityscapes demonstrate that our method is able to accurately predict overlap relations, and outperform the state-of-the-art performance for panoptic segmentation. Our method also won the Innovation Award in COCO 2019 challenge.

SOGNet

Usage

  • Pytorch1.0 or above and Python 3 are needed.
  • Run init.shfirst for getting the pretrained models and panopticapi and compiling the project.
  • Run init_coco.sh for generating the ground truth file. Note that we use the panoptic annotation for our panoptic head, which is different from UPSNet.

Train

python tools/train_net.py --cfg PATH_TO_CONFIG_FILE.yaml

Test

python tools/test_net.py --cfg PATH_TO_CONFIG_FILE.yaml --weight_path PATH_TO_CHECKPOINT.pth

We provide our best model based on resnet50, you can download here.

test split PQ SQ RQ PQ_th PQ_st
SOGNet-50 val 43.7 78.7 53.5 50.6 33.1

TODO

  • [ ] Reimplement the code in detectron2.

Citation

If you find SOGNet useful in your research, please consider citing:

@article{yang19,
 author={Yibo Yang, Hongyang Li, Xia Li, Qijie Zhao, Jianlong Wu, Zhouchen Lin},
 title={SOGNet: Scene Overlap Graph Network for Panoptic Segmentation},
 journaltitle = {{arXiv}:1911.07527 [cs]},
 year={2019}
}
Popular Segmentation Projects
Popular Graph Projects
Popular Machine Learning Categories
Related Searches

Get A Weekly Email With Trending Projects For These Categories
No Spam. Unsubscribe easily at any time.
Python
Graph
Segmentation
Scene
Coco