├── .gitignore ├── LICENSE ├── README.md ├── configs ├── Base_DIMaskDINO_COCO.yaml ├── dimaskdino_r50_4scale_bs16_12ep.yaml ├── dimaskdino_r50_4scale_bs16_24ep.yaml └── dimaskdino_r50_4scale_bs16_50ep.yaml ├── datasets ├── README.md ├── ade20k_instance_catid_mapping.txt ├── ade20k_instance_imgCatIds.json ├── prepare_ade20k_ins_seg.py ├── prepare_ade20k_pan_seg.py ├── prepare_ade20k_sem_seg.py └── prepare_coco_semantic_annos_from_panoptic_annos.py ├── demo ├── README.md ├── demo.py └── predictor.py ├── dimaskdino ├── __init__.py ├── config.py ├── data │ ├── __init__.py │ ├── dataset_mappers │ │ ├── __init__.py │ │ ├── coco_instance_new_baseline_dataset_mapper.py │ │ ├── coco_panoptic_new_baseline_dataset_mapper.py │ │ ├── detr_dataset_mapper.py │ │ └── mask_former_semantic_dataset_mapper.py │ └── datasets │ │ ├── __init__.py │ │ ├── register_ade20k_full.py │ │ ├── register_ade20k_instance.py │ │ ├── register_ade20k_panoptic.py │ │ ├── register_coco_panoptic_annos_semseg.py │ │ ├── register_coco_stuff_10k.py │ │ ├── register_mapillary_vistas.py │ │ └── register_mapillary_vistas_panoptic.py ├── evaluation │ ├── __init__.py │ └── instance_evaluation.py ├── maskdino.py ├── modeling │ ├── __init__.py │ ├── backbone │ │ ├── __init__.py │ │ ├── focal.py │ │ └── swin.py │ ├── criterion.py │ ├── matcher.py │ ├── meta_arch │ │ ├── __init__.py │ │ └── maskdino_head.py │ ├── pixel_decoder │ │ ├── __init__.py │ │ ├── maskdino_encoder.py │ │ ├── ops │ │ │ ├── functions │ │ │ │ ├── __init__.py │ │ │ │ └── ms_deform_attn_func.py │ │ │ ├── make.sh │ │ │ ├── modules │ │ │ │ ├── __init__.py │ │ │ │ └── ms_deform_attn.py │ │ │ ├── setup.py │ │ │ ├── src │ │ │ │ ├── cpu │ │ │ │ │ ├── ms_deform_attn_cpu.cpp │ │ │ │ │ └── ms_deform_attn_cpu.h │ │ │ │ ├── cuda │ │ │ │ │ ├── ms_deform_attn_cuda.cu │ │ │ │ │ ├── ms_deform_attn_cuda.h │ │ │ │ │ └── ms_deform_im2col_cuda.cuh │ │ │ │ ├── ms_deform_attn.h │ │ │ │ └── vision.cpp │ │ │ └── test.py │ │ └── position_encoding.py │ └── transformer_decoder │ │ ├── __init__.py │ │ ├── balance_aware_decoder.py │ │ └── dimaskdino_decoder.py ├── test_time_augmentation.py └── utils │ ├── __init__.py │ ├── box_ops.py │ ├── misc.py │ └── utils.py ├── figures ├── analyse.png ├── framework.png └── results.gif ├── requirements.txt ├── tools ├── analyze_model.py ├── convert-pretrained-swin-model-to-d2.py ├── convert-torchvision-to-d2.py ├── evaluate_coco_boundary_ap.py └── evaluate_pq_for_semantic_segmentation.py └── train_net.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/README.md -------------------------------------------------------------------------------- /configs/Base_DIMaskDINO_COCO.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/configs/Base_DIMaskDINO_COCO.yaml -------------------------------------------------------------------------------- /configs/dimaskdino_r50_4scale_bs16_12ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/configs/dimaskdino_r50_4scale_bs16_12ep.yaml -------------------------------------------------------------------------------- /configs/dimaskdino_r50_4scale_bs16_24ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/configs/dimaskdino_r50_4scale_bs16_24ep.yaml -------------------------------------------------------------------------------- /configs/dimaskdino_r50_4scale_bs16_50ep.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/configs/dimaskdino_r50_4scale_bs16_50ep.yaml -------------------------------------------------------------------------------- /datasets/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/datasets/README.md -------------------------------------------------------------------------------- /datasets/ade20k_instance_catid_mapping.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/datasets/ade20k_instance_catid_mapping.txt -------------------------------------------------------------------------------- /datasets/ade20k_instance_imgCatIds.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/datasets/ade20k_instance_imgCatIds.json -------------------------------------------------------------------------------- /datasets/prepare_ade20k_ins_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/datasets/prepare_ade20k_ins_seg.py -------------------------------------------------------------------------------- /datasets/prepare_ade20k_pan_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/datasets/prepare_ade20k_pan_seg.py -------------------------------------------------------------------------------- /datasets/prepare_ade20k_sem_seg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/datasets/prepare_ade20k_sem_seg.py -------------------------------------------------------------------------------- /datasets/prepare_coco_semantic_annos_from_panoptic_annos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/datasets/prepare_coco_semantic_annos_from_panoptic_annos.py -------------------------------------------------------------------------------- /demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/demo/README.md -------------------------------------------------------------------------------- /demo/demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/demo/demo.py -------------------------------------------------------------------------------- /demo/predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/demo/predictor.py -------------------------------------------------------------------------------- /dimaskdino/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/__init__.py -------------------------------------------------------------------------------- /dimaskdino/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/config.py -------------------------------------------------------------------------------- /dimaskdino/data/__init__.py: -------------------------------------------------------------------------------- 1 | from . import datasets 2 | 3 | -------------------------------------------------------------------------------- /dimaskdino/data/dataset_mappers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dimaskdino/data/dataset_mappers/coco_instance_new_baseline_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/dataset_mappers/coco_instance_new_baseline_dataset_mapper.py -------------------------------------------------------------------------------- /dimaskdino/data/dataset_mappers/coco_panoptic_new_baseline_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/dataset_mappers/coco_panoptic_new_baseline_dataset_mapper.py -------------------------------------------------------------------------------- /dimaskdino/data/dataset_mappers/detr_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/dataset_mappers/detr_dataset_mapper.py -------------------------------------------------------------------------------- /dimaskdino/data/dataset_mappers/mask_former_semantic_dataset_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/dataset_mappers/mask_former_semantic_dataset_mapper.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/__init__.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/register_ade20k_full.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/register_ade20k_full.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/register_ade20k_instance.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/register_ade20k_instance.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/register_ade20k_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/register_ade20k_panoptic.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/register_coco_panoptic_annos_semseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/register_coco_panoptic_annos_semseg.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/register_coco_stuff_10k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/register_coco_stuff_10k.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/register_mapillary_vistas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/register_mapillary_vistas.py -------------------------------------------------------------------------------- /dimaskdino/data/datasets/register_mapillary_vistas_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/data/datasets/register_mapillary_vistas_panoptic.py -------------------------------------------------------------------------------- /dimaskdino/evaluation/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /dimaskdino/evaluation/instance_evaluation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/evaluation/instance_evaluation.py -------------------------------------------------------------------------------- /dimaskdino/maskdino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/maskdino.py -------------------------------------------------------------------------------- /dimaskdino/modeling/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/__init__.py -------------------------------------------------------------------------------- /dimaskdino/modeling/backbone/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /dimaskdino/modeling/backbone/focal.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/backbone/focal.py -------------------------------------------------------------------------------- /dimaskdino/modeling/backbone/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/backbone/swin.py -------------------------------------------------------------------------------- /dimaskdino/modeling/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/criterion.py -------------------------------------------------------------------------------- /dimaskdino/modeling/matcher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/matcher.py -------------------------------------------------------------------------------- /dimaskdino/modeling/meta_arch/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) IDEA, Inc. and its affiliates. 2 | 3 | -------------------------------------------------------------------------------- /dimaskdino/modeling/meta_arch/maskdino_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/meta_arch/maskdino_head.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) IDEA, Inc. and its affiliates. 2 | -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/maskdino_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/maskdino_encoder.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/functions/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/functions/__init__.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/functions/ms_deform_attn_func.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/functions/ms_deform_attn_func.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/make.sh -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/modules/__init__.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/modules/ms_deform_attn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/modules/ms_deform_attn.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/setup.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.cpp -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/src/cpu/ms_deform_attn_cpu.h -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.cu: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.cu -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/src/cuda/ms_deform_attn_cuda.h -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/src/cuda/ms_deform_im2col_cuda.cuh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/src/cuda/ms_deform_im2col_cuda.cuh -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/src/ms_deform_attn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/src/ms_deform_attn.h -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/src/vision.cpp -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/ops/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/ops/test.py -------------------------------------------------------------------------------- /dimaskdino/modeling/pixel_decoder/position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/pixel_decoder/position_encoding.py -------------------------------------------------------------------------------- /dimaskdino/modeling/transformer_decoder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/transformer_decoder/__init__.py -------------------------------------------------------------------------------- /dimaskdino/modeling/transformer_decoder/balance_aware_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/transformer_decoder/balance_aware_decoder.py -------------------------------------------------------------------------------- /dimaskdino/modeling/transformer_decoder/dimaskdino_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/modeling/transformer_decoder/dimaskdino_decoder.py -------------------------------------------------------------------------------- /dimaskdino/test_time_augmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/test_time_augmentation.py -------------------------------------------------------------------------------- /dimaskdino/utils/__init__.py: -------------------------------------------------------------------------------- 1 | # Copyright (c) Facebook, Inc. and its affiliates. 2 | # import misc -------------------------------------------------------------------------------- /dimaskdino/utils/box_ops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/utils/box_ops.py -------------------------------------------------------------------------------- /dimaskdino/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/utils/misc.py -------------------------------------------------------------------------------- /dimaskdino/utils/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/dimaskdino/utils/utils.py -------------------------------------------------------------------------------- /figures/analyse.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/figures/analyse.png -------------------------------------------------------------------------------- /figures/framework.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/figures/framework.png -------------------------------------------------------------------------------- /figures/results.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/figures/results.gif -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/requirements.txt -------------------------------------------------------------------------------- /tools/analyze_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/tools/analyze_model.py -------------------------------------------------------------------------------- /tools/convert-pretrained-swin-model-to-d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/tools/convert-pretrained-swin-model-to-d2.py -------------------------------------------------------------------------------- /tools/convert-torchvision-to-d2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/tools/convert-torchvision-to-d2.py -------------------------------------------------------------------------------- /tools/evaluate_coco_boundary_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/tools/evaluate_coco_boundary_ap.py -------------------------------------------------------------------------------- /tools/evaluate_pq_for_semantic_segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/tools/evaluate_pq_for_semantic_segmentation.py -------------------------------------------------------------------------------- /train_net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/CQU-ADHRI-Lab/DI-MaskDINO/HEAD/train_net.py --------------------------------------------------------------------------------