├── CITATION.cff ├── README.md ├── assets ├── object-insdet.png ├── vis-background.png ├── vis-objects.png └── vis-scenes.png ├── demo_eval_instance_detection_RankSelect.ipynb ├── demo_eval_instance_detection_StableMatch.ipynb ├── demo_get_proposals_square.ipynb ├── test_data ├── annotations │ ├── instances_test_1.json │ └── instances_test_4.json ├── test_1 │ ├── test_002.jpg │ └── test_090.jpg └── test_4 │ ├── test_002.jpg │ └── test_090.jpg └── utils ├── data_utils.py ├── pascal2coco.py └── visualizer.py /CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/CITATION.cff -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/README.md -------------------------------------------------------------------------------- /assets/object-insdet.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/assets/object-insdet.png -------------------------------------------------------------------------------- /assets/vis-background.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/assets/vis-background.png -------------------------------------------------------------------------------- /assets/vis-objects.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/assets/vis-objects.png -------------------------------------------------------------------------------- /assets/vis-scenes.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/assets/vis-scenes.png -------------------------------------------------------------------------------- /demo_eval_instance_detection_RankSelect.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/demo_eval_instance_detection_RankSelect.ipynb -------------------------------------------------------------------------------- /demo_eval_instance_detection_StableMatch.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/demo_eval_instance_detection_StableMatch.ipynb -------------------------------------------------------------------------------- /demo_get_proposals_square.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/demo_get_proposals_square.ipynb -------------------------------------------------------------------------------- /test_data/annotations/instances_test_1.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/test_data/annotations/instances_test_1.json -------------------------------------------------------------------------------- /test_data/annotations/instances_test_4.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/test_data/annotations/instances_test_4.json -------------------------------------------------------------------------------- /test_data/test_1/test_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/test_data/test_1/test_002.jpg -------------------------------------------------------------------------------- /test_data/test_1/test_090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/test_data/test_1/test_090.jpg -------------------------------------------------------------------------------- /test_data/test_4/test_002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/test_data/test_4/test_002.jpg -------------------------------------------------------------------------------- /test_data/test_4/test_090.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/test_data/test_4/test_090.jpg -------------------------------------------------------------------------------- /utils/data_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/utils/data_utils.py -------------------------------------------------------------------------------- /utils/pascal2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/utils/pascal2coco.py -------------------------------------------------------------------------------- /utils/visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/insdet/instance-detection/HEAD/utils/visualizer.py --------------------------------------------------------------------------------