Project Name | Stars | Downloads | Repos Using This | Packages Using This | Most Recent Commit | Total Releases | Latest Release | Open Issues | License | Language |
---|---|---|---|---|---|---|---|---|---|---|
Nnproject_deepmask | 188 | 7 years ago | 7 | Python | ||||||
Deep Neural Network for object segmentation. | ||||||||||
3dgnn_pytorch | 142 | 4 years ago | 14 | mit | Python | |||||
3D Graph Neural Networks for RGBD Semantic Segmentation | ||||||||||
Ai Paper Drawer | 88 | 2 years ago | ||||||||
人工智能论文关键点集结。This project aims to collect key points of AI papers. | ||||||||||
Gacnet | 82 | 4 years ago | 7 | Python | ||||||
Pytorch implementation of 'Graph Attention Convolution for Point Cloud Segmentation' | ||||||||||
Pegbis | 71 | 3 years ago | 3 | Python | ||||||
Python implementation of "Efficient Graph-Based Image Segmentation" paper | ||||||||||
Graphcut | 69 | 6 years ago | 2 | Python | ||||||
Graph cut image segmentation with custom GUI. | ||||||||||
Imcut | 61 | 3 | 1 | 2 years ago | 73 | June 14, 2018 | 10 | bsd-3-clause | Python | |
3D graph cut segmentation | ||||||||||
Sognet | 53 | 2 years ago | 3 | Python | ||||||
SOGNet: Scene Overlap Graph Network for Panoptic Segmentation | ||||||||||
Graphmemvos | 43 | 3 years ago | 3 | Python | ||||||
Video Object Segmentation with Episodic Graph Memory Networks (ECCV2020 spotlight) | ||||||||||
Rgcnn | 39 | 5 years ago | 2 | apache-2.0 | Python | |||||
Regularized Graph CNN for Point Cloud Segmentation |
We have made the detectron2-based code public. But there are still some bugs in it. We will fix them as soon as possible.
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.
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.
init.sh
first for getting the pretrained models and panopticapi and compiling the project.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 |
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}
}