By Xiaoxu Feng, Xiwen Yao, Gong Cheng, Junwei Han
We have released the codes of IENet work here. It is the extension of RINet and obtains state-of-the-art performance on the PASCAL VOC and MS COCO!
@InProceedings{Feng_2022_CVPR,
author = {Feng, Xiaoxu and Yao, Xiwen and Cheng, Gong and Han, Junwei},
title = {Weakly Supervised Rotation-Invariant Aerial Object Detection Network},
booktitle = {Proceedings of the IEEE/CVF Conference on Computer Vision and Pattern Recognition (CVPR)},
month = {June},
year = {2022},
pages = {14146-14155}
}
The code will be released soon.
- python == 3.6
- Cuda == 9.0
- Pytorch == 0.4.1
- torchvision == 0.2.1
- Pillow
- sklearn
- opencv
- scipy
- cython
- GPU: GeForce RTX 2080Ti | Tesla V100
- Clone the RINet repository
git clone https://github.com/XiaoxFeng/RINet.git
- Compile
cd RINet/lib
bash make.sh
3.Download the VOCdevkit and rename it as VOCdevkit2007
cd RINet/data/
wget http://host.robots.ox.ac.uk/pascal/VOC/voc2007/VOCdevkit_08-Jun-2007.tar
- Download the training, validation, test data from NWPU, NWPU.V2 and DIOR
- Extract all of datasets into one directory named VOCdevkit2007
- Download pretrained ImageNet weights from here, and put it in the data/imagenet_weights/
- Download selective search proposals from NWPU and DIOR, and put it in the data/selective_search_data/
./experiments/scripts/train_faster_rcnn.sh 0 pascal_voc vgg16
./experiments/scripts/test_faster_rcnn.sh 0 pascal_voc vgg16
Models trained on DIOR can be downloaded here:Google Drive.
We borrowed code from MLEM, PCL, and Faster-RCNN.