antxinyuan commited on
Commit
90543bf
·
verified ·
1 Parent(s): ad747f1

Update README.md

Browse files
Files changed (1) hide show
  1. README.md +70 -3
README.md CHANGED
@@ -1,3 +1,70 @@
1
- ---
2
- license: apache-2.0
3
- ---
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
1
+ ---
2
+ license: apache-2.0
3
+ ---
4
+ # Semantic-decoupled Spatial Partition Guided Point-supervised Oriented Object Detection
5
+
6
+ [![arxiv](https://img.shields.io/badge/arXiv-2506.10601-479ee2.svg)](https://arxiv.org/pdf/2506.10601)
7
+ [![Github](https://img.shields.io/badge/GitHub-SSP-blueviolet.svg)](https://github.com/antxinyuan/ssp)
8
+
9
+ 🔥 We appreciate the attention to our paper. The code is available at [Github repo](https://github.com/antxinyuan/ssp).
10
+
11
+ > Production from Institute of Computing Technology, Chinese Academy of Sciences.
12
+
13
+ > Primary contact: Xinyuan Liu ( liuxinyuan21s@ict.ac.cn ).
14
+
15
+ ## TL;DR
16
+ This repository contains the source code of [**Semantic-decoupled Spatial Partition Guided Point-supervised Oriented Object Detection**](https://arxiv.org/pdf/2506.10601).
17
+
18
+ To tackle inadequate sample assignment and instance confusion in point-supervised oriented object detection for remote sensing dense scenes, we propose SSP (Semantic-decoupled Spatial Partition), a framework integrating rule-driven prior injection and data-driven label purification. Its core innovations include pixel-level spatial partition for sample assignment and semantic-modulated box extraction for pseudo-label generation.
19
+
20
+
21
+ ### Pseudo-label performance
22
+ All pseudo-labeling results are available in [pseudo_labels](https://huggingface.co/antxinyuan/SSP/blob/main/pseudo_labels.zip).
23
+
24
+ | Dataset | mAP | mIoU | ann_file |
25
+ | :-: | :-: | :-: | :-: |
26
+ | DOTA-v1.0 | 34.95 |49.03 | pseudo_labels/ssp_dotav10_hybrid/ |
27
+ | DOTA-v1.5 | 28.89 | 44.92 | pseudo_labels/ssp_dotav15_hybrid/ |
28
+ | DOTA-v2.0 | 24.72 | 41.93 | pseudo_labels/ssp_dotav20_hybrid/ |
29
+
30
+ ### Detectors performance
31
+ | Dataset | Config | Log | Checkpoint | mAP(paper) | mAP(reproduced) |
32
+ | :-: | :-: | :-: | :-: | :-: | :-: |
33
+ | SSP(RFOCS) | [config](https://github.com/antxinyuan/ssp/blob/main/configs/ssp/rfcos_ssp_dotav10.py) | [hugging face](https://huggingface.co/antxinyuan/SSP/blob/main/logs/rfcos_ssp_dotav10.json) | [hugging face](https://huggingface.co/antxinyuan/SSP/blob/main/models/rfcos_ssp_dotav10-4c17ff33.pth) | 45.78 | 45.82 |
34
+ | SSP(ORCNN) | [config](https://github.com/antxinyuan/ssp/blob/main/configs/ssp/orcnn_ssp_dotav10.py) | [hugging face](https://huggingface.co/antxinyuan/SSP/blob/main/logs/orcnn_ssp_dotav10.json) | [hugging face](https://huggingface.co/antxinyuan/SSP/blob/main/models/orcnn_ssp_dotav10-2df034d3.pth) | 47.86 | 48.81 |
35
+ | SSP(ReDet) | [config](https://github.com/antxinyuan/ssp/blob/main/configs/ssp/orcnn_ssp_dotav20.py) | [hugging face](https://huggingface.co/antxinyuan/SSP/blob/main/logs/redet_ssp_dotav10.json) | [hugging face](https://huggingface.co/antxinyuan/SSP/blob/main/models/redet_ssp_dotav10-eed2738e.pth) | 48.50 | 49.02 |
36
+
37
+ ## 🖊️ Citation
38
+
39
+ If you find this work helpful for your research, please consider giving this repo a star ⭐ and citing our papers:
40
+
41
+
42
+ ## Citation
43
+ If this work is helpful for your research, please consider citing the following BibTeX entry.
44
+
45
+ ``` bibtex
46
+ @misc{liu2025ssp,
47
+ title={Semantic-decoupled Spatial Partition Guided Point-supervised Oriented Object Detection},
48
+ author={Xinyuan Liu and Hang Xu and Yike Ma and Yucheng Zhang and Feng Dai},
49
+ year={2025},
50
+ eprint={2506.10601},
51
+ archivePrefix={arXiv},
52
+ primaryClass={cs.CV},
53
+ url={https://arxiv.org/abs/2506.10601},
54
+ }
55
+
56
+ @inproceedings{xu2024acm,
57
+ title={Rethinking boundary discontinuity problem for oriented object detection},
58
+ author={Xu, Hang and Liu, Xinyuan and Xu, Haonan and Ma, Yike and Zhu, Zunjie and Yan, Chenggang and Dai, Feng},
59
+ booktitle={Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition},
60
+ pages={17406--17415},
61
+ year={2024}
62
+ }
63
+
64
+ ```
65
+
66
+ ## Related resources
67
+
68
+ We acknowledge all the open-source contributors for the following projects to make this work possible:
69
+ - [PointOBB-v2](https://github.com/VisionXLab/PointOBB-v2)
70
+ - [MMRotate](https://github.com/open-mmlab/mmrotate)