All Projects → csuhan → S2anet

csuhan / S2anet

Official code of the paper "Align Deep Features for Oriented Object Detection"

Programming Languages

python
139335 projects - #7 most used programming language

Projects that are alternatives of or similar to S2anet

Deep Learning For Tracking And Detection
Collection of papers, datasets, code and other resources for object tracking and detection using deep learning
Stars: ✭ 1,920 (+1180%)
Mutual labels:  object-detection
Lacmus
Lacmus is a cross-platform application that helps to find people who are lost in the forest using computer vision and neural networks.
Stars: ✭ 142 (-5.33%)
Mutual labels:  object-detection
Raspberrypi Objectdetection Tensorflow
Object Detection using TensorFlow on a Raspberry Pi
Stars: ✭ 147 (-2%)
Mutual labels:  object-detection
Remo Python
🐰 Python lib for remo - the app for annotations and images management in Computer Vision
Stars: ✭ 138 (-8%)
Mutual labels:  object-detection
Easy Faster Rcnn.pytorch
An easy implementation of Faster R-CNN (https://arxiv.org/pdf/1506.01497.pdf) in PyTorch.
Stars: ✭ 141 (-6%)
Mutual labels:  object-detection
Iterdet
[S+SSPR2020] IterDet: Iterative Scheme for Object Detection in Crowded Environments
Stars: ✭ 143 (-4.67%)
Mutual labels:  object-detection
Centernet
Codes for our paper "CenterNet: Keypoint Triplets for Object Detection" .
Stars: ✭ 1,750 (+1066.67%)
Mutual labels:  object-detection
Study resources
study resources of model and engineering
Stars: ✭ 148 (-1.33%)
Mutual labels:  object-detection
Ssd keras
A Keras port of Single Shot MultiBox Detector
Stars: ✭ 1,763 (+1075.33%)
Mutual labels:  object-detection
Data science bowl 2018
My 5th place (out of 816 teams) solution to The 2018 Data Science Bowl organized by Booz Allen Hamilton
Stars: ✭ 147 (-2%)
Mutual labels:  object-detection
Voc2coco
How to create custom COCO data set for object detection
Stars: ✭ 140 (-6.67%)
Mutual labels:  object-detection
Tfclassify Unity
An example of using Tensorflow with Unity for image classification and object detection.
Stars: ✭ 140 (-6.67%)
Mutual labels:  object-detection
Yolov3
yolov3 by pytorch
Stars: ✭ 142 (-5.33%)
Mutual labels:  object-detection
Csl retinanet tensorflow
Code for ECCV 2020 paper: Arbitrary-Oriented Object Detection with Circular Smooth Label
Stars: ✭ 140 (-6.67%)
Mutual labels:  object-detection
Self Driving Golf Cart
Be Driven 🚘
Stars: ✭ 147 (-2%)
Mutual labels:  object-detection
Wsddn
Weakly Supervised Deep Detection Networks (CVPR 2016)
Stars: ✭ 138 (-8%)
Mutual labels:  object-detection
Tensorflow Anpr
Automatic Number (License) Plate Recognition using Tensorflow Object Detection API
Stars: ✭ 142 (-5.33%)
Mutual labels:  object-detection
Tfobjwebrtc
Tensorflow Object Detection API Web Service wrapper that works on any <video> tag and WebRTC streams
Stars: ✭ 149 (-0.67%)
Mutual labels:  object-detection
Underwater Object Detection
Kesci underwater object detection algorithm contest
Stars: ✭ 148 (-1.33%)
Mutual labels:  object-detection
Bmw Labeltool Lite
This repository provides you with a easy to use labeling tool for State-of-the-art Deep Learning training purposes.
Stars: ✭ 145 (-3.33%)
Mutual labels:  object-detection

Align Deep Features for Oriented Object Detection

Align Deep Features for Oriented Object Detection,
Jiaming Han*, Jian Ding*, Jie Li, Gui-Song Xia,
arXiv preprint (arXiv:2008.09397) / TGRS (IEEE Xplore).

The repo is based on mmdetection.

Two versions are provided here: Original version and v20210104. We recommend to use v20210104 (i.e. the master branch).

Introduction

The past decade has witnessed significant progress on detecting objects in aerial images that are often distributed with large scale variations and arbitrary orientations. However most of existing methods rely on heuristically defined anchors with different scales, angles and aspect ratios and usually suffer from severe misalignment between anchor boxes and axis-aligned convolutional features, which leads to the common inconsistency between the classification score and localization accuracy. To address this issue, we propose a Single-shot Alignment Network (S2A-Net) consisting of two modules: a Feature Alignment Module (FAM) and an Oriented Detection Module (ODM). The FAM can generate high-quality anchors with an Anchor Refinement Network and adaptively align the convolutional features according to the corresponding anchor boxes with a novel Alignment Convolution. The ODM first adopts active rotating filters to encode the orientation information and then produces orientation-sensitive and orientation-invariant features to alleviate the inconsistency between classification score and localization accuracy. Besides, we further explore the approach to detect objects in large-size images, which leads to a better speed-accuracy trade-off. Extensive experiments demonstrate that our method can achieve state-of-the-art performance on two commonly used aerial objects datasets (i.e., DOTA and HRSC2016) while keeping high efficiency.

Changelog

  • 2021-03-13. Our paper is available at IEEE Xplore.

  • 2021-02-06. Accepted to IEEE Transactions on Geoscience and Remote Sensing (TGRS).

  • 2021-01-01. Big changes! Following mmdetection v2, we made a lot of changes to our code. Our original code contains many unnecessary functions and inappropriate modifications. So we modified related codes, e.g, dataset preprocessing and loading, unified function names, iou calculator between OBBs, and evaluation. Besides, we also implement a Cascade S2A-Net. Compared with previous versions, the updated version is more straightforward and easy to understand.

Benchmark and model zoo

Model Backbone MS Rotate Lr schd Inf time (fps) box AP (ori./now) Download
RetinaNet R-50-FPN - - 1x 16.0 68.05/68.40 model
S2A-Net R-50-FPN - - 1x 16.0 74.12/73.99 model
S2A-Net R-50-FPN 1x 16.0 79.42 model
S2A-Net R-101-FPN 1x 12.7 79.15 model

*Note that the mAP reported here is a little different from the original paper. All results are reported on DOTA-v1.0 test-dev. All checkpoints here are trained with the Original version, and not compatible with the updated version.

  • 20210104 updated version
Model Data Backbone MS Rotate Lr schd box AP Download
RetinaNet HRSC2016 R-50-FPN - 6x 81.63 cfg model log
CS2A-Net-1s HRSC2016 R-50-FPN - 4x 84.58 cfg model log
CS2A-Net-2s HRSC2016 R-50-FPN - 3x 89.96 cfg model log
S2A-Net HRSC2016 R-101-FPN - 3x 90.00 cfg model
CS2A-Net-1s DOTA R-50-FPN - - 1x 69.06 cfg model log
CS2A-Net-2s DOTA R-50-FPN - - 1x 73.67 cfg model log
S2A-Net DOTA R-50-FPN - - 1x 74.04 cfg model

CS2A-Net-ns indicates Cascade S2A-Net with n stages. For more information, please refer to cascade_s2anet.md

The checkpoints of S2A-Net are converted from the original version.

If you cannot get access to Google Drive, BaiduYun download link can be found here with extracting code ABCD.

Installation

Please refer to install.md for installation and dataset preparation.

Getting Started

Please see getting_started.md for the basic usage of MMDetection.

Citation

@article{han2021align,  
  author={J. {Han} and J. {Ding} and J. {Li} and G. -S. {Xia}},  
  journal={IEEE Transactions on Geoscience and Remote Sensing},   
  title={Align Deep Features for Oriented Object Detection},   
  year={2021}, 
  pages={1-11},  
  doi={10.1109/TGRS.2021.3062048}}

@inproceedings{xia2018dota,
  title={DOTA: A large-scale dataset for object detection in aerial images},
  author={Xia, Gui-Song and Bai, Xiang and Ding, Jian and Zhu, Zhen and Belongie, Serge and Luo, Jiebo and Datcu, Mihai and Pelillo, Marcello and Zhang, Liangpei},
  booktitle={Proceedings of the IEEE Conference on Computer Vision and Pattern Recognition},
  pages={3974--3983},
  year={2018}
}

@InProceedings{Ding_2019_CVPR,
  author = {Ding, Jian and Xue, Nan and Long, Yang and Xia, Gui-Song and Lu, Qikai},
  title = {Learning RoI Transformer for Oriented Object Detection in Aerial Images},
  booktitle = {The IEEE Conference on Computer Vision and Pattern Recognition (CVPR)},
  month = {June},
  year = {2019}
}

@article{chen2019mmdetection,
  title={MMDetection: Open mmlab detection toolbox and benchmark},
  author={Chen, Kai and Wang, Jiaqi and Pang, Jiangmiao and Cao, Yuhang and Xiong, Yu and Li, Xiaoxiao and Sun, Shuyang and Feng, Wansen and Liu, Ziwei and Xu, Jiarui and others},
  journal={arXiv preprint arXiv:1906.07155},
  year={2019}
}
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].