├── .gitignore ├── README.md ├── data ├── __init__.py ├── config.py ├── data_augment.py ├── voc0712.py └── voc_eval.py ├── demo.py ├── images ├── 1.jpg ├── 2.jpg ├── 3.jpg └── 4.jpg ├── layers ├── __init__.py ├── functions │ ├── __init__.py │ ├── detection.py │ └── prior_box.py └── modules │ ├── __init__.py │ └── multibox_loss.py ├── make.sh ├── models ├── RFB_Net_vgg.py ├── __init__.py └── module.py ├── testALL.py ├── test_RFB.py ├── train_RFB.py ├── utils ├── __init__.py ├── box_utils.py ├── build.py ├── nms │ ├── cpu_nms.pyx │ ├── gpu_nms.hpp │ ├── gpu_nms.pyx │ ├── nms_kernel.cu │ └── py_cpu_nms.py ├── nms_wrapper.py ├── timer.py └── visualize.py └── weights └── epoches_112.pth /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/.gitignore -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/README.md -------------------------------------------------------------------------------- /data/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/data/__init__.py -------------------------------------------------------------------------------- /data/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/data/config.py -------------------------------------------------------------------------------- /data/data_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/data/data_augment.py -------------------------------------------------------------------------------- /data/voc0712.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/data/voc0712.py -------------------------------------------------------------------------------- /data/voc_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/data/voc_eval.py -------------------------------------------------------------------------------- /demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/demo.py -------------------------------------------------------------------------------- /images/1.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/images/1.jpg -------------------------------------------------------------------------------- /images/2.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/images/2.jpg -------------------------------------------------------------------------------- /images/3.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/images/3.jpg -------------------------------------------------------------------------------- /images/4.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/images/4.jpg -------------------------------------------------------------------------------- /layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/layers/__init__.py -------------------------------------------------------------------------------- /layers/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/layers/functions/__init__.py -------------------------------------------------------------------------------- /layers/functions/detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/layers/functions/detection.py -------------------------------------------------------------------------------- /layers/functions/prior_box.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/layers/functions/prior_box.py -------------------------------------------------------------------------------- /layers/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/layers/modules/__init__.py -------------------------------------------------------------------------------- /layers/modules/multibox_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/layers/modules/multibox_loss.py -------------------------------------------------------------------------------- /make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/make.sh -------------------------------------------------------------------------------- /models/RFB_Net_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/models/RFB_Net_vgg.py -------------------------------------------------------------------------------- /models/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /models/module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/models/module.py -------------------------------------------------------------------------------- /testALL.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/testALL.py -------------------------------------------------------------------------------- /test_RFB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/test_RFB.py -------------------------------------------------------------------------------- /train_RFB.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/train_RFB.py -------------------------------------------------------------------------------- /utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /utils/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/box_utils.py -------------------------------------------------------------------------------- /utils/build.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/build.py -------------------------------------------------------------------------------- /utils/nms/cpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/nms/cpu_nms.pyx -------------------------------------------------------------------------------- /utils/nms/gpu_nms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/nms/gpu_nms.hpp -------------------------------------------------------------------------------- /utils/nms/gpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/nms/gpu_nms.pyx -------------------------------------------------------------------------------- /utils/nms/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/nms/nms_kernel.cu -------------------------------------------------------------------------------- /utils/nms/py_cpu_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/nms/py_cpu_nms.py -------------------------------------------------------------------------------- /utils/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/nms_wrapper.py -------------------------------------------------------------------------------- /utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/timer.py -------------------------------------------------------------------------------- /utils/visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/utils/visualize.py -------------------------------------------------------------------------------- /weights/epoches_112.pth: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/songwsx/RFSong-7993/HEAD/weights/epoches_112.pth --------------------------------------------------------------------------------