├── README.md ├── evaluation_code ├── __pycache__ │ └── dataset.cpython-310.pyc ├── dataset.py ├── mAP@k.py ├── mious.py ├── unified.py ├── utils │ ├── __pycache__ │ │ ├── evaluate.cpython-310.pyc │ │ ├── evaluate.cpython-39.pyc │ │ ├── evaluate_pixel.cpython-310.pyc │ │ ├── evaluate_pixel.cpython-39.pyc │ │ ├── iou_compute.cpython-310.pyc │ │ ├── iou_compute.cpython-38.pyc │ │ ├── path_manage.cpython-310.pyc │ │ ├── path_manage.cpython-38.pyc │ │ └── path_manage.cpython-39.pyc │ ├── evaluate.py │ ├── evaluate_pixel.py │ ├── iou_compute.py │ ├── iou_compute_delg.py │ └── path_manage.py └── visualize.ipynb ├── license.txt └── third_party └── LICENSE.txt /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/README.md -------------------------------------------------------------------------------- /evaluation_code/__pycache__/dataset.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/__pycache__/dataset.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation_code/dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/dataset.py -------------------------------------------------------------------------------- /evaluation_code/mAP@k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/mAP@k.py -------------------------------------------------------------------------------- /evaluation_code/mious.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/mious.py -------------------------------------------------------------------------------- /evaluation_code/unified.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/unified.py -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/evaluate.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/evaluate.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/evaluate.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/evaluate.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/evaluate_pixel.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/evaluate_pixel.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/evaluate_pixel.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/evaluate_pixel.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/iou_compute.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/iou_compute.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/iou_compute.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/iou_compute.cpython-38.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/path_manage.cpython-310.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/path_manage.cpython-310.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/path_manage.cpython-38.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/path_manage.cpython-38.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/__pycache__/path_manage.cpython-39.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/__pycache__/path_manage.cpython-39.pyc -------------------------------------------------------------------------------- /evaluation_code/utils/evaluate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/evaluate.py -------------------------------------------------------------------------------- /evaluation_code/utils/evaluate_pixel.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/evaluate_pixel.py -------------------------------------------------------------------------------- /evaluation_code/utils/iou_compute.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/iou_compute.py -------------------------------------------------------------------------------- /evaluation_code/utils/iou_compute_delg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/iou_compute_delg.py -------------------------------------------------------------------------------- /evaluation_code/utils/path_manage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/utils/path_manage.py -------------------------------------------------------------------------------- /evaluation_code/visualize.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/evaluation_code/visualize.ipynb -------------------------------------------------------------------------------- /license.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/anguoyuan/Pixel_retrieval-Segmented_instance_retrieval/HEAD/license.txt -------------------------------------------------------------------------------- /third_party/LICENSE.txt: -------------------------------------------------------------------------------- 1 | 2 | --------------------------------------------------------------------------------