├── .gitignore ├── LICENSE ├── README.md ├── data └── demo │ ├── set06_V001_I00459_lwir.png │ ├── set06_V001_I00459_visible.png │ ├── set08_V001_I02579_lwir.png │ ├── set08_V001_I02579_visible.png │ ├── set08_V002_I01419_lwir.png │ ├── set08_V002_I01419_visible.png │ ├── set09_V000_I01139_lwir.png │ ├── set09_V000_I01139_visible.png │ ├── set09_V000_I01959_lwir.png │ ├── set09_V000_I01959_visible.png │ ├── set10_V001_I03279_lwir.png │ ├── set10_V001_I03279_visible.png │ ├── set11_V000_I00159_lwir.png │ ├── set11_V000_I00159_visible.png │ ├── set11_V000_I01279_lwir.png │ └── set11_V000_I01279_visible.png ├── figures ├── comparisons.png ├── highlight.png └── overview.png ├── lib ├── Makefile ├── __init__.py ├── datasets │ ├── KAISTdevkit-matlab-wrapper │ │ ├── README.md │ │ ├── bbGt.m │ │ ├── demo_test.m │ │ ├── getPrmDflt.m │ │ └── kaist_eval_full.m │ ├── __init__.py │ ├── ds_utils.py │ ├── factory.py │ ├── imdb.py │ └── kaist.py ├── layer_utils │ ├── __init__.py │ ├── fusion_layer.py │ ├── generate_anchors.py │ ├── proposal_layer.py │ ├── proposal_layer_combine.py │ └── snippets.py ├── model │ ├── __init__.py │ ├── bbox_transform.py │ ├── config.py │ ├── nms_wrapper.py │ └── test.py ├── nets │ ├── __init__.py │ ├── network.py │ └── vgg16.py ├── nms │ ├── __init__.py │ ├── cpu_nms.c │ ├── cpu_nms.pyx │ ├── gpu_nms.cpp │ ├── gpu_nms.hpp │ ├── gpu_nms.pyx │ ├── nms_kernel.cu │ └── py_cpu_nms.py ├── setup.py └── utils │ ├── __init__.py │ ├── bbox.c │ ├── bbox.pyx │ ├── blob.py │ ├── nms.c │ ├── nms.py │ ├── nms.pyx │ ├── timer.py │ └── visualization.py ├── output └── README.md └── tools ├── _init_paths.py └── demo.py /.gitignore: -------------------------------------------------------------------------------- 1 | __pycache__ 2 | output/pretrained* 3 | .idea 4 | -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/README.md -------------------------------------------------------------------------------- /data/demo/set06_V001_I00459_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set06_V001_I00459_lwir.png -------------------------------------------------------------------------------- /data/demo/set06_V001_I00459_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set06_V001_I00459_visible.png -------------------------------------------------------------------------------- /data/demo/set08_V001_I02579_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set08_V001_I02579_lwir.png -------------------------------------------------------------------------------- /data/demo/set08_V001_I02579_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set08_V001_I02579_visible.png -------------------------------------------------------------------------------- /data/demo/set08_V002_I01419_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set08_V002_I01419_lwir.png -------------------------------------------------------------------------------- /data/demo/set08_V002_I01419_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set08_V002_I01419_visible.png -------------------------------------------------------------------------------- /data/demo/set09_V000_I01139_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set09_V000_I01139_lwir.png -------------------------------------------------------------------------------- /data/demo/set09_V000_I01139_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set09_V000_I01139_visible.png -------------------------------------------------------------------------------- /data/demo/set09_V000_I01959_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set09_V000_I01959_lwir.png -------------------------------------------------------------------------------- /data/demo/set09_V000_I01959_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set09_V000_I01959_visible.png -------------------------------------------------------------------------------- /data/demo/set10_V001_I03279_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set10_V001_I03279_lwir.png -------------------------------------------------------------------------------- /data/demo/set10_V001_I03279_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set10_V001_I03279_visible.png -------------------------------------------------------------------------------- /data/demo/set11_V000_I00159_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set11_V000_I00159_lwir.png -------------------------------------------------------------------------------- /data/demo/set11_V000_I00159_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set11_V000_I00159_visible.png -------------------------------------------------------------------------------- /data/demo/set11_V000_I01279_lwir.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set11_V000_I01279_lwir.png -------------------------------------------------------------------------------- /data/demo/set11_V000_I01279_visible.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/data/demo/set11_V000_I01279_visible.png -------------------------------------------------------------------------------- /figures/comparisons.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/figures/comparisons.png -------------------------------------------------------------------------------- /figures/highlight.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/figures/highlight.png -------------------------------------------------------------------------------- /figures/overview.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/figures/overview.png -------------------------------------------------------------------------------- /lib/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/Makefile -------------------------------------------------------------------------------- /lib/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/datasets/KAISTdevkit-matlab-wrapper/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/KAISTdevkit-matlab-wrapper/README.md -------------------------------------------------------------------------------- /lib/datasets/KAISTdevkit-matlab-wrapper/bbGt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/KAISTdevkit-matlab-wrapper/bbGt.m -------------------------------------------------------------------------------- /lib/datasets/KAISTdevkit-matlab-wrapper/demo_test.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/KAISTdevkit-matlab-wrapper/demo_test.m -------------------------------------------------------------------------------- /lib/datasets/KAISTdevkit-matlab-wrapper/getPrmDflt.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/KAISTdevkit-matlab-wrapper/getPrmDflt.m -------------------------------------------------------------------------------- /lib/datasets/KAISTdevkit-matlab-wrapper/kaist_eval_full.m: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/KAISTdevkit-matlab-wrapper/kaist_eval_full.m -------------------------------------------------------------------------------- /lib/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/__init__.py -------------------------------------------------------------------------------- /lib/datasets/ds_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/ds_utils.py -------------------------------------------------------------------------------- /lib/datasets/factory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/factory.py -------------------------------------------------------------------------------- /lib/datasets/imdb.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/imdb.py -------------------------------------------------------------------------------- /lib/datasets/kaist.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/datasets/kaist.py -------------------------------------------------------------------------------- /lib/layer_utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/layer_utils/fusion_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/layer_utils/fusion_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/generate_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/layer_utils/generate_anchors.py -------------------------------------------------------------------------------- /lib/layer_utils/proposal_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/layer_utils/proposal_layer.py -------------------------------------------------------------------------------- /lib/layer_utils/proposal_layer_combine.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/layer_utils/proposal_layer_combine.py -------------------------------------------------------------------------------- /lib/layer_utils/snippets.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/layer_utils/snippets.py -------------------------------------------------------------------------------- /lib/model/__init__.py: -------------------------------------------------------------------------------- 1 | from . import config 2 | -------------------------------------------------------------------------------- /lib/model/bbox_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/model/bbox_transform.py -------------------------------------------------------------------------------- /lib/model/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/model/config.py -------------------------------------------------------------------------------- /lib/model/nms_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/model/nms_wrapper.py -------------------------------------------------------------------------------- /lib/model/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/model/test.py -------------------------------------------------------------------------------- /lib/nets/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nets/network.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nets/network.py -------------------------------------------------------------------------------- /lib/nets/vgg16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nets/vgg16.py -------------------------------------------------------------------------------- /lib/nms/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /lib/nms/cpu_nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nms/cpu_nms.c -------------------------------------------------------------------------------- /lib/nms/cpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nms/cpu_nms.pyx -------------------------------------------------------------------------------- /lib/nms/gpu_nms.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nms/gpu_nms.cpp -------------------------------------------------------------------------------- /lib/nms/gpu_nms.hpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nms/gpu_nms.hpp -------------------------------------------------------------------------------- /lib/nms/gpu_nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nms/gpu_nms.pyx -------------------------------------------------------------------------------- /lib/nms/nms_kernel.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nms/nms_kernel.cu -------------------------------------------------------------------------------- /lib/nms/py_cpu_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/nms/py_cpu_nms.py -------------------------------------------------------------------------------- /lib/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/setup.py -------------------------------------------------------------------------------- /lib/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/__init__.py -------------------------------------------------------------------------------- /lib/utils/bbox.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/bbox.c -------------------------------------------------------------------------------- /lib/utils/bbox.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/bbox.pyx -------------------------------------------------------------------------------- /lib/utils/blob.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/blob.py -------------------------------------------------------------------------------- /lib/utils/nms.c: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/nms.c -------------------------------------------------------------------------------- /lib/utils/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/nms.py -------------------------------------------------------------------------------- /lib/utils/nms.pyx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/nms.pyx -------------------------------------------------------------------------------- /lib/utils/timer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/timer.py -------------------------------------------------------------------------------- /lib/utils/visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/lib/utils/visualization.py -------------------------------------------------------------------------------- /output/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/output/README.md -------------------------------------------------------------------------------- /tools/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/tools/_init_paths.py -------------------------------------------------------------------------------- /tools/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Li-Chengyang/MSDS-RCNN/HEAD/tools/demo.py --------------------------------------------------------------------------------