gitextract_otvagzvw/ ├── .gitattributes ├── .gitignore ├── LICENSE ├── README.md ├── batch_instanceTrainId_to_dets.m ├── data/ │ └── Cityscapes/ │ ├── gtFine/ │ │ └── train/ │ │ └── aachen/ │ │ └── aachen_000000_000019_gtFine_polygons.json │ └── lists/ │ ├── demo_id.txt │ ├── test_id.txt │ ├── train_extra_id.txt │ ├── train_id.txt │ └── val_id.txt ├── demo_instanceTrainId_to_dets.m ├── demo_make_iterative_gt.m ├── demo_merge_cam_mandg.m ├── results/ │ └── pred_flat_feat/ │ └── aachen_000000_000019_leftImg8bit.mat ├── scripts/ │ ├── apply_bbox_prior.m │ ├── check_image_level_tags.m │ ├── check_low_iou.m │ ├── clean_label.m │ ├── get_opts.m │ ├── ins_box_process.m │ ├── instanceTrainId_to_dets.m │ ├── load_data.m │ ├── make_bbox_masks.m │ ├── merge_mag_and_pred.m │ ├── run_sub.m │ └── save_results.m ├── utils/ │ ├── colormapcs.mat │ └── objectName19.mat └── visualisation/ ├── visualise_bboxes.m ├── visualise_results_cam_mandg.m └── visualise_results_iterative_gt.m