├── .gitignore ├── README.md ├── assets ├── banner.png └── meta_diagram.jpg ├── detection ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── configs │ ├── _base_ │ │ ├── datasets │ │ │ └── flir(aligned) │ │ │ │ ├── flir_dual_LSJ_1024_1bs.py │ │ │ │ ├── flir_dual_LSJ_768_1bs.py │ │ │ │ └── flir_dual_LSJ_768_2bs.py │ │ ├── default_runtime.py │ │ └── schedules │ │ │ ├── schedule_1x.py │ │ │ ├── schedule_20e.py │ │ │ └── schedule_2x.py │ ├── _vpt_ablation │ │ └── flir_768_v15_ir-vit_ir-rgb-adapter_4stage_2x2bs.py │ └── _vpt_cascade-rcnn │ │ └── FLIR_RGBT_ViTDet │ │ └── 100ep │ │ └── backbone_vitb_IN1k_mae_coco_224x224 │ │ ├── 1024_v15_rgb-ir-feat-fusion-spm_crossAttn-GRU_4stage_8x1bs.py │ │ └── 768_v15_rgb-ir-feat-fusion-spm_crossAttn-GRU_4stage_8x1bs.py ├── dataset-index.yml ├── docker │ ├── Dockerfile │ ├── serve │ │ ├── Dockerfile │ │ ├── config.properties │ │ └── entrypoint.sh │ └── serve_cn │ │ └── Dockerfile ├── mmdet │ ├── __init__.py │ ├── apis │ │ ├── __init__.py │ │ ├── det_inferencer.py │ │ └── inference.py │ ├── configs │ │ ├── _base_ │ │ │ ├── datasets │ │ │ │ ├── coco_detection.py │ │ │ │ ├── coco_instance.py │ │ │ │ ├── coco_instance_semantic.py │ │ │ │ └── coco_panoptic.py │ │ │ ├── default_runtime.py │ │ │ ├── models │ │ │ │ ├── cascade_mask_rcnn_r50_fpn.py │ │ │ │ ├── cascade_rcnn_r50_fpn.py │ │ │ │ ├── faster_rcnn_r50_fpn.py │ │ │ │ ├── mask_rcnn_r50_fpn.py │ │ │ │ └── retinanet_r50_fpn.py │ │ │ └── schedules │ │ │ │ └── schedule_1x.py │ │ ├── cascade_rcnn │ │ │ ├── cascade_mask_rcnn_r50_fpn_1x_coco.py │ │ │ └── cascade_rcnn_r50_fpn_1x_coco.py │ │ ├── faster_rcnn │ │ │ └── faster_rcnn_r50_fpn_1x_coco.py │ │ ├── mask_rcnn │ │ │ └── mask_rcnn_r50_fpn_1x_coco.py │ │ ├── panoptic_fpn │ │ │ └── panoptic_fpn_r50_fpn_1x_coco.py │ │ ├── retinanet │ │ │ ├── retinanet_r50_fpn_1x_coco.py │ │ │ └── retinanet_tta.py │ │ └── rtmdet │ │ │ ├── rtmdet_l_8xb32_300e_coco.py │ │ │ ├── rtmdet_s_8xb32_300e_coco.py │ │ │ └── rtmdet_tta.py │ ├── datasets │ │ ├── __init__.py │ │ ├── ade20k.py │ │ ├── api_wrappers │ │ │ ├── __init__.py │ │ │ └── coco_api.py │ │ ├── base_det_dataset.py │ │ ├── base_semseg_dataset.py │ │ ├── base_video_dataset.py │ │ ├── cityscapes.py │ │ ├── coco.py │ │ ├── coco_caption.py │ │ ├── coco_panoptic.py │ │ ├── coco_semantic.py │ │ ├── crowdhuman.py │ │ ├── dataset_wrappers.py │ │ ├── deepfashion.py │ │ ├── dsdl.py │ │ ├── dual_spectral.py │ │ ├── isaid.py │ │ ├── lvis.py │ │ ├── mot_challenge_dataset.py │ │ ├── objects365.py │ │ ├── openimages.py │ │ ├── refcoco.py │ │ ├── reid_dataset.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── batch_sampler.py │ │ │ ├── class_aware_sampler.py │ │ │ ├── multi_source_sampler.py │ │ │ └── track_img_sampler.py │ │ ├── transforms │ │ │ ├── __init__.py │ │ │ ├── augment_wrappers.py │ │ │ ├── colorspace.py │ │ │ ├── formatting.py │ │ │ ├── frame_sampling.py │ │ │ ├── geometric.py │ │ │ ├── instaboost.py │ │ │ ├── loading.py │ │ │ ├── transforms.py │ │ │ └── wrappers.py │ │ ├── utils.py │ │ ├── voc.py │ │ ├── wider_face.py │ │ ├── xml_style.py │ │ └── youtube_vis_dataset.py │ ├── engine │ │ ├── __init__.py │ │ ├── hooks │ │ │ ├── __init__.py │ │ │ ├── checkloss_hook.py │ │ │ ├── mean_teacher_hook.py │ │ │ ├── memory_profiler_hook.py │ │ │ ├── num_class_check_hook.py │ │ │ ├── pipeline_switch_hook.py │ │ │ ├── set_epoch_info_hook.py │ │ │ ├── sync_norm_hook.py │ │ │ ├── utils.py │ │ │ ├── visualization_hook.py │ │ │ └── yolox_mode_switch_hook.py │ │ ├── optimizers │ │ │ ├── __init__.py │ │ │ └── layer_decay_optimizer_constructor.py │ │ ├── runner │ │ │ ├── __init__.py │ │ │ └── loops.py │ │ └── schedulers │ │ │ ├── __init__.py │ │ │ └── quadratic_warmup.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── functional │ │ │ ├── __init__.py │ │ │ ├── bbox_overlaps.py │ │ │ ├── cityscapes_utils.py │ │ │ ├── class_names.py │ │ │ ├── mean_ap.py │ │ │ ├── panoptic_utils.py │ │ │ ├── recall.py │ │ │ ├── ytvis.py │ │ │ └── ytviseval.py │ │ └── metrics │ │ │ ├── __init__.py │ │ │ ├── base_video_metric.py │ │ │ ├── cityscapes_metric.py │ │ │ ├── coco_caption_metric.py │ │ │ ├── coco_metric.py │ │ │ ├── coco_occluded_metric.py │ │ │ ├── coco_panoptic_metric.py │ │ │ ├── coco_video_metric.py │ │ │ ├── crowdhuman_metric.py │ │ │ ├── dump_det_results.py │ │ │ ├── dump_proposals_metric.py │ │ │ ├── kaist │ │ │ ├── coco.py │ │ │ ├── coco_.py │ │ │ ├── coco_Pedestrain_MR_metric.py │ │ │ ├── eval_MR_multisetup.py │ │ │ └── eval_demo.py │ │ │ ├── lvis_metric.py │ │ │ ├── mot_challenge_metric.py │ │ │ ├── openimages_metric.py │ │ │ ├── refseg_metric.py │ │ │ ├── reid_metric.py │ │ │ ├── semseg_metric.py │ │ │ ├── voc_metric.py │ │ │ └── youtube_vis_metric.py │ ├── models │ │ ├── __init__.py │ │ ├── backbones │ │ │ ├── __init__.py │ │ │ ├── csp_darknet.py │ │ │ ├── cspnext.py │ │ │ ├── darknet.py │ │ │ ├── detectors_resnet.py │ │ │ ├── detectors_resnext.py │ │ │ ├── efficientnet.py │ │ │ ├── hourglass.py │ │ │ ├── hrnet.py │ │ │ ├── mobilenet_v2.py │ │ │ ├── pvt.py │ │ │ ├── regnet.py │ │ │ ├── res2net.py │ │ │ ├── resnest.py │ │ │ ├── resnet.py │ │ │ ├── resnext.py │ │ │ ├── ssd_vgg.py │ │ │ ├── swin.py │ │ │ └── trident_resnet.py │ │ ├── data_preprocessors │ │ │ ├── __init__.py │ │ │ ├── data_preprocessor.py │ │ │ ├── reid_data_preprocessor.py │ │ │ ├── track_data_preprocessor.py │ │ │ └── two_stream_data_preprocessor.py │ │ ├── dense_heads │ │ │ ├── __init__.py │ │ │ ├── anchor_free_head.py │ │ │ ├── anchor_head.py │ │ │ ├── atss_head.py │ │ │ ├── atss_vlfusion_head.py │ │ │ ├── autoassign_head.py │ │ │ ├── base_dense_head.py │ │ │ ├── base_mask_head.py │ │ │ ├── boxinst_head.py │ │ │ ├── cascade_rpn_head.py │ │ │ ├── centernet_head.py │ │ │ ├── centernet_update_head.py │ │ │ ├── centripetal_head.py │ │ │ ├── condinst_head.py │ │ │ ├── conditional_detr_head.py │ │ │ ├── corner_head.py │ │ │ ├── dab_detr_head.py │ │ │ ├── ddod_head.py │ │ │ ├── deformable_detr_head.py │ │ │ ├── dense_test_mixins.py │ │ │ ├── detr_head.py │ │ │ ├── dino_head.py │ │ │ ├── embedding_rpn_head.py │ │ │ ├── fcos_head.py │ │ │ ├── fovea_head.py │ │ │ ├── free_anchor_retina_head.py │ │ │ ├── fsaf_head.py │ │ │ ├── ga_retina_head.py │ │ │ ├── ga_rpn_head.py │ │ │ ├── gfl_head.py │ │ │ ├── guided_anchor_head.py │ │ │ ├── lad_head.py │ │ │ ├── ld_head.py │ │ │ ├── mask2former_head.py │ │ │ ├── maskformer_head.py │ │ │ ├── nasfcos_head.py │ │ │ ├── paa_head.py │ │ │ ├── pisa_retinanet_head.py │ │ │ ├── pisa_ssd_head.py │ │ │ ├── reppoints_head.py │ │ │ ├── retina_head.py │ │ │ ├── retina_sepbn_head.py │ │ │ ├── rpn_head.py │ │ │ ├── rtmdet_head.py │ │ │ ├── rtmdet_ins_head.py │ │ │ ├── sabl_retina_head.py │ │ │ ├── solo_head.py │ │ │ ├── solov2_head.py │ │ │ ├── ssd_head.py │ │ │ ├── tood_head.py │ │ │ ├── vfnet_head.py │ │ │ ├── yolact_head.py │ │ │ ├── yolo_head.py │ │ │ ├── yolof_head.py │ │ │ └── yolox_head.py │ │ ├── detectors │ │ │ ├── __init__.py │ │ │ ├── atss.py │ │ │ ├── autoassign.py │ │ │ ├── base.py │ │ │ ├── base_detr.py │ │ │ ├── boxinst.py │ │ │ ├── cascade_rcnn.py │ │ │ ├── centernet.py │ │ │ ├── condinst.py │ │ │ ├── conditional_detr.py │ │ │ ├── cornernet.py │ │ │ ├── crowddet.py │ │ │ ├── d2_wrapper.py │ │ │ ├── dab_detr.py │ │ │ ├── ddod.py │ │ │ ├── deformable_detr.py │ │ │ ├── detr.py │ │ │ ├── dino.py │ │ │ ├── fast_rcnn.py │ │ │ ├── faster_rcnn.py │ │ │ ├── fcos.py │ │ │ ├── fovea.py │ │ │ ├── fsaf.py │ │ │ ├── gfl.py │ │ │ ├── glip.py │ │ │ ├── grid_rcnn.py │ │ │ ├── htc.py │ │ │ ├── kd_one_stage.py │ │ │ ├── lad.py │ │ │ ├── mask2former.py │ │ │ ├── mask_rcnn.py │ │ │ ├── mask_scoring_rcnn.py │ │ │ ├── maskformer.py │ │ │ ├── nasfcos.py │ │ │ ├── paa.py │ │ │ ├── panoptic_fpn.py │ │ │ ├── panoptic_two_stage_segmentor.py │ │ │ ├── point_rend.py │ │ │ ├── queryinst.py │ │ │ ├── reppoints_detector.py │ │ │ ├── retinanet.py │ │ │ ├── rpn.py │ │ │ ├── rtmdet.py │ │ │ ├── scnet.py │ │ │ ├── semi_base.py │ │ │ ├── single_stage.py │ │ │ ├── single_stage_instance_seg.py │ │ │ ├── soft_teacher.py │ │ │ ├── solo.py │ │ │ ├── solov2.py │ │ │ ├── sparse_rcnn.py │ │ │ ├── tood.py │ │ │ ├── trident_faster_rcnn.py │ │ │ ├── two_stage.py │ │ │ ├── two_stream_mask_rcnn_fuse_before_fpn.py │ │ │ ├── two_stream_visualize.py │ │ │ ├── two_stream_visualize_backup_6-17.py │ │ │ ├── vfnet.py │ │ │ ├── yolact.py │ │ │ ├── yolo.py │ │ │ ├── yolof.py │ │ │ └── yolox.py │ │ ├── language_models │ │ │ ├── __init__.py │ │ │ └── bert.py │ │ ├── layers │ │ │ ├── __init__.py │ │ │ ├── activations.py │ │ │ ├── bbox_nms.py │ │ │ ├── brick_wrappers.py │ │ │ ├── conv_upsample.py │ │ │ ├── csp_layer.py │ │ │ ├── dropblock.py │ │ │ ├── ema.py │ │ │ ├── inverted_residual.py │ │ │ ├── matrix_nms.py │ │ │ ├── msdeformattn_pixel_decoder.py │ │ │ ├── normed_predictor.py │ │ │ ├── pixel_decoder.py │ │ │ ├── positional_encoding.py │ │ │ ├── res_layer.py │ │ │ ├── se_layer.py │ │ │ └── transformer │ │ │ │ ├── __init__.py │ │ │ │ ├── conditional_detr_layers.py │ │ │ │ ├── dab_detr_layers.py │ │ │ │ ├── deformable_detr_layers.py │ │ │ │ ├── detr_layers.py │ │ │ │ ├── dino_layers.py │ │ │ │ ├── mask2former_layers.py │ │ │ │ └── utils.py │ │ ├── losses │ │ │ ├── __init__.py │ │ │ ├── accuracy.py │ │ │ ├── ae_loss.py │ │ │ ├── balanced_l1_loss.py │ │ │ ├── cross_entropy_loss.py │ │ │ ├── dice_loss.py │ │ │ ├── eqlv2_loss.py │ │ │ ├── focal_loss.py │ │ │ ├── gaussian_focal_loss.py │ │ │ ├── gfocal_loss.py │ │ │ ├── ghm_loss.py │ │ │ ├── iou_loss.py │ │ │ ├── kd_loss.py │ │ │ ├── l2_loss.py │ │ │ ├── margin_loss.py │ │ │ ├── mse_loss.py │ │ │ ├── multipos_cross_entropy_loss.py │ │ │ ├── pisa_loss.py │ │ │ ├── seesaw_loss.py │ │ │ ├── smooth_l1_loss.py │ │ │ ├── triplet_loss.py │ │ │ ├── utils.py │ │ │ └── varifocal_loss.py │ │ ├── mot │ │ │ ├── __init__.py │ │ │ ├── base.py │ │ │ ├── bytetrack.py │ │ │ ├── deep_sort.py │ │ │ ├── ocsort.py │ │ │ ├── qdtrack.py │ │ │ └── strongsort.py │ │ ├── necks │ │ │ ├── __init__.py │ │ │ ├── bfp.py │ │ │ ├── channel_mapper.py │ │ │ ├── cspnext_pafpn.py │ │ │ ├── ct_resnet_neck.py │ │ │ ├── dilated_encoder.py │ │ │ ├── dyhead.py │ │ │ ├── fpg.py │ │ │ ├── fpn.py │ │ │ ├── fpn_carafe.py │ │ │ ├── hrfpn.py │ │ │ ├── nas_fpn.py │ │ │ ├── nasfcos_fpn.py │ │ │ ├── pafpn.py │ │ │ ├── rfp.py │ │ │ ├── ssd_neck.py │ │ │ ├── ssh.py │ │ │ ├── yolo_neck.py │ │ │ └── yolox_pafpn.py │ │ ├── reid │ │ │ ├── __init__.py │ │ │ ├── base_reid.py │ │ │ ├── fc_module.py │ │ │ ├── gap.py │ │ │ └── linear_reid_head.py │ │ ├── roi_heads │ │ │ ├── __init__.py │ │ │ ├── base_roi_head.py │ │ │ ├── bbox_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── bbox_head.py │ │ │ │ ├── convfc_bbox_head.py │ │ │ │ ├── dii_head.py │ │ │ │ ├── double_bbox_head.py │ │ │ │ ├── multi_instance_bbox_head.py │ │ │ │ ├── sabl_head.py │ │ │ │ └── scnet_bbox_head.py │ │ │ ├── cascade_roi_head.py │ │ │ ├── double_roi_head.py │ │ │ ├── dynamic_roi_head.py │ │ │ ├── grid_roi_head.py │ │ │ ├── htc_roi_head.py │ │ │ ├── mask_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── coarse_mask_head.py │ │ │ │ ├── dynamic_mask_head.py │ │ │ │ ├── fcn_mask_head.py │ │ │ │ ├── feature_relay_head.py │ │ │ │ ├── fused_semantic_head.py │ │ │ │ ├── global_context_head.py │ │ │ │ ├── grid_head.py │ │ │ │ ├── htc_mask_head.py │ │ │ │ ├── mask_point_head.py │ │ │ │ ├── maskiou_head.py │ │ │ │ ├── scnet_mask_head.py │ │ │ │ └── scnet_semantic_head.py │ │ │ ├── mask_scoring_roi_head.py │ │ │ ├── multi_instance_roi_head.py │ │ │ ├── pisa_roi_head.py │ │ │ ├── point_rend_roi_head.py │ │ │ ├── roi_extractors │ │ │ │ ├── __init__.py │ │ │ │ ├── base_roi_extractor.py │ │ │ │ ├── generic_roi_extractor.py │ │ │ │ └── single_level_roi_extractor.py │ │ │ ├── scnet_roi_head.py │ │ │ ├── shared_heads │ │ │ │ ├── __init__.py │ │ │ │ └── res_layer.py │ │ │ ├── sparse_roi_head.py │ │ │ ├── standard_roi_head.py │ │ │ ├── test_mixins.py │ │ │ └── trident_roi_head.py │ │ ├── seg_heads │ │ │ ├── __init__.py │ │ │ ├── base_semantic_head.py │ │ │ ├── panoptic_fpn_head.py │ │ │ └── panoptic_fusion_heads │ │ │ │ ├── __init__.py │ │ │ │ ├── base_panoptic_fusion_head.py │ │ │ │ ├── heuristic_fusion_head.py │ │ │ │ └── maskformer_fusion_head.py │ │ ├── task_modules │ │ │ ├── __init__.py │ │ │ ├── assigners │ │ │ │ ├── __init__.py │ │ │ │ ├── approx_max_iou_assigner.py │ │ │ │ ├── assign_result.py │ │ │ │ ├── atss_assigner.py │ │ │ │ ├── base_assigner.py │ │ │ │ ├── center_region_assigner.py │ │ │ │ ├── dynamic_soft_label_assigner.py │ │ │ │ ├── grid_assigner.py │ │ │ │ ├── hungarian_assigner.py │ │ │ │ ├── iou2d_calculator.py │ │ │ │ ├── match_cost.py │ │ │ │ ├── max_iou_assigner.py │ │ │ │ ├── multi_instance_assigner.py │ │ │ │ ├── point_assigner.py │ │ │ │ ├── region_assigner.py │ │ │ │ ├── sim_ota_assigner.py │ │ │ │ ├── task_aligned_assigner.py │ │ │ │ └── uniform_assigner.py │ │ │ ├── builder.py │ │ │ ├── coders │ │ │ │ ├── __init__.py │ │ │ │ ├── base_bbox_coder.py │ │ │ │ ├── bucketing_bbox_coder.py │ │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ │ ├── distance_point_bbox_coder.py │ │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ │ ├── pseudo_bbox_coder.py │ │ │ │ ├── tblr_bbox_coder.py │ │ │ │ └── yolo_bbox_coder.py │ │ │ ├── prior_generators │ │ │ │ ├── __init__.py │ │ │ │ ├── anchor_generator.py │ │ │ │ ├── point_generator.py │ │ │ │ └── utils.py │ │ │ ├── samplers │ │ │ │ ├── __init__.py │ │ │ │ ├── base_sampler.py │ │ │ │ ├── combined_sampler.py │ │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ │ ├── mask_pseudo_sampler.py │ │ │ │ ├── mask_sampling_result.py │ │ │ │ ├── multi_instance_random_sampler.py │ │ │ │ ├── multi_instance_sampling_result.py │ │ │ │ ├── ohem_sampler.py │ │ │ │ ├── pseudo_sampler.py │ │ │ │ ├── random_sampler.py │ │ │ │ ├── sampling_result.py │ │ │ │ └── score_hlr_sampler.py │ │ │ └── tracking │ │ │ │ ├── __init__.py │ │ │ │ ├── aflink.py │ │ │ │ ├── camera_motion_compensation.py │ │ │ │ ├── interpolation.py │ │ │ │ ├── kalman_filter.py │ │ │ │ └── similarity.py │ │ ├── test_time_augs │ │ │ ├── __init__.py │ │ │ ├── det_tta.py │ │ │ └── merge_augs.py │ │ ├── trackers │ │ │ ├── __init__.py │ │ │ ├── base_tracker.py │ │ │ ├── byte_tracker.py │ │ │ ├── masktrack_rcnn_tracker.py │ │ │ ├── ocsort_tracker.py │ │ │ ├── quasi_dense_tracker.py │ │ │ ├── sort_tracker.py │ │ │ └── strongsort_tracker.py │ │ ├── tracking_heads │ │ │ ├── __init__.py │ │ │ ├── mask2former_track_head.py │ │ │ ├── quasi_dense_embed_head.py │ │ │ ├── quasi_dense_track_head.py │ │ │ ├── roi_embed_head.py │ │ │ └── roi_track_head.py │ │ ├── utils │ │ │ ├── __init__.py │ │ │ ├── gaussian_target.py │ │ │ ├── image.py │ │ │ ├── make_divisible.py │ │ │ ├── misc.py │ │ │ ├── panoptic_gt_processing.py │ │ │ ├── point_sample.py │ │ │ └── vlfuse_helper.py │ │ └── vis │ │ │ ├── __init__.py │ │ │ ├── mask2former_vis.py │ │ │ └── masktrack_rcnn.py │ ├── registry.py │ ├── scripts │ │ └── train_od.sh │ ├── structures │ │ ├── __init__.py │ │ ├── bbox │ │ │ ├── __init__.py │ │ │ ├── base_boxes.py │ │ │ ├── bbox_overlaps.py │ │ │ ├── box_type.py │ │ │ ├── horizontal_boxes.py │ │ │ └── transforms.py │ │ ├── det_data_sample.py │ │ ├── mask │ │ │ ├── __init__.py │ │ │ ├── mask_target.py │ │ │ ├── structures.py │ │ │ └── utils.py │ │ ├── reid_data_sample.py │ │ └── track_data_sample.py │ ├── testing │ │ ├── __init__.py │ │ ├── _fast_stop_training_hook.py │ │ └── _utils.py │ ├── utils │ │ ├── __init__.py │ │ ├── benchmark.py │ │ ├── collect_env.py │ │ ├── compat_config.py │ │ ├── contextmanagers.py │ │ ├── dist_utils.py │ │ ├── logger.py │ │ ├── memory.py │ │ ├── misc.py │ │ ├── mot_error_visualize.py │ │ ├── profiling.py │ │ ├── replace_cfg_vals.py │ │ ├── setup_env.py │ │ ├── split_batch.py │ │ ├── typing_utils.py │ │ ├── util_mixins.py │ │ └── util_random.py │ ├── version.py │ └── visualization │ │ ├── __init__.py │ │ ├── local_visualizer.py │ │ └── palette.py ├── model-index.yml ├── projects │ ├── ViTDet │ │ ├── README.md │ │ ├── configs │ │ │ └── lsj-100e_coco-instance.py │ │ └── vitdet │ │ │ ├── __init__.py │ │ │ ├── dynamic_conv │ │ │ ├── __init__.py │ │ │ └── per_pixel_adaptive_conv.py │ │ │ ├── example_complexity_flops.py │ │ │ ├── fp16_compression_hook.py │ │ │ ├── layer_decay_optimizer_constructor.py │ │ │ ├── ops │ │ │ ├── README.md │ │ │ ├── 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 │ │ │ ├── simple_fpn.py │ │ │ ├── vit.py │ │ │ ├── vit_rgbt_v15.py │ │ │ └── vit_rgbt_v15_ir.py │ └── gradio_demo │ │ ├── README.md │ │ └── launch.py ├── pytest.ini ├── r ├── requirements.txt ├── requirements │ ├── albu.txt │ ├── build.txt │ ├── docs.txt │ ├── mminstall.txt │ ├── multimodal.txt │ ├── optional.txt │ ├── readthedocs.txt │ ├── runtime.txt │ ├── tests.txt │ └── tracking.txt ├── resources │ ├── coco_test_12510.jpg │ ├── corruptions_sev_3.png │ ├── data_pipeline.png │ ├── loss_curve.png │ ├── mmdet-logo.png │ ├── qq_group_qrcode.jpg │ └── zhihu_qrcode.jpg ├── scripts │ ├── train_ablate.sh │ └── train_od.sh ├── setup.cfg ├── setup.py ├── tests │ ├── data │ │ ├── Objects365 │ │ │ └── unsorted_obj365_sample.json │ │ ├── OpenImages │ │ │ ├── annotations │ │ │ │ ├── annotations-human-imagelabels-boxable.csv │ │ │ │ ├── bbox_labels_600_hierarchy.json │ │ │ │ ├── class-descriptions-boxable.csv │ │ │ │ ├── image-metas.pkl │ │ │ │ └── oidv6-train-annotations-bbox.csv │ │ │ └── challenge2019 │ │ │ │ ├── annotations-human-imagelabels-boxable.csv │ │ │ │ ├── challenge-2019-train-detection-bbox.txt │ │ │ │ ├── class_label_tree.np │ │ │ │ └── cls-label-description.csv │ │ ├── VOCdevkit │ │ │ ├── VOC2007 │ │ │ │ ├── Annotations │ │ │ │ │ └── 000001.xml │ │ │ │ ├── ImageSets │ │ │ │ │ └── Main │ │ │ │ │ │ ├── test.txt │ │ │ │ │ │ └── trainval.txt │ │ │ │ └── JPEGImages │ │ │ │ │ └── 000001.jpg │ │ │ └── VOC2012 │ │ │ │ ├── Annotations │ │ │ │ └── 000001.xml │ │ │ │ ├── ImageSets │ │ │ │ └── Main │ │ │ │ │ ├── test.txt │ │ │ │ │ └── trainval.txt │ │ │ │ └── JPEGImages │ │ │ │ └── 000001.jpg │ │ ├── WIDERFace │ │ │ ├── WIDER_train │ │ │ │ ├── 0--Parade │ │ │ │ │ └── .gitkeep │ │ │ │ └── Annotations │ │ │ │ │ └── 0_Parade_marchingband_1_5.xml │ │ │ └── train.txt │ │ ├── coco_sample.json │ │ ├── coco_wrong_format_sample.json │ │ ├── color.jpg │ │ ├── configs_mmtrack │ │ │ ├── faster_rcnn_r50_dc5.py │ │ │ ├── faster_rcnn_r50_fpn.py │ │ │ ├── mot_challenge.py │ │ │ ├── selsa_faster_rcnn_r101_dc5_1x.py │ │ │ └── tracktor_faster-rcnn_r50_fpn_4e.py │ │ ├── crowdhuman_dataset │ │ │ ├── id_hw_train.json │ │ │ └── test_annotation_train.odgt │ │ ├── custom_dataset │ │ │ ├── images │ │ │ │ ├── 000001.jpg │ │ │ │ └── 000001.xml │ │ │ ├── test.txt │ │ │ └── trainval.txt │ │ ├── demo_reid_data │ │ │ └── mot17_reid │ │ │ │ └── ann.txt │ │ ├── dsdl_det │ │ │ ├── config.py │ │ │ ├── defs │ │ │ │ ├── class-domain.yaml │ │ │ │ └── obejct-detection-def.yaml │ │ │ └── set-train │ │ │ │ ├── train.yaml │ │ │ │ └── train_samples.json │ │ ├── gray.jpg │ │ ├── mot_sample.json │ │ └── vis_sample.json │ ├── explore_data.ipynb │ ├── test_apis │ │ ├── test_det_inferencer.py │ │ └── test_inference.py │ ├── test_datasets │ │ ├── test_cityscapes.py │ │ ├── test_coco.py │ │ ├── test_coco_api_wrapper.py │ │ ├── test_coco_panoptic.py │ │ ├── test_crowdhuman.py │ │ ├── test_dsdldet.py │ │ ├── test_lvis.py │ │ ├── test_mot_challenge_dataset.py │ │ ├── test_objects365.py │ │ ├── test_openimages.py │ │ ├── test_pascal_voc.py │ │ ├── test_reid_dataset.py │ │ ├── test_samplers │ │ │ ├── test_batch_sampler.py │ │ │ ├── test_multi_source_sampler.py │ │ │ └── test_track_img_sampler.py │ │ ├── test_transforms │ │ │ ├── __init__.py │ │ │ ├── test_augment_wrappers.py │ │ │ ├── test_colorspace.py │ │ │ ├── test_formatting.py │ │ │ ├── test_frame_sampling.py │ │ │ ├── test_geometric.py │ │ │ ├── test_instaboost.py │ │ │ ├── test_loading.py │ │ │ ├── test_transforms.py │ │ │ ├── test_wrappers.py │ │ │ └── utils.py │ │ ├── test_tta.py │ │ ├── test_wider_face.py │ │ └── test_youtube_vis_dataset.py │ ├── test_engine │ │ ├── __init__.py │ │ ├── test_hooks │ │ │ ├── test_checkloss_hook.py │ │ │ ├── test_mean_teacher_hook.py │ │ │ ├── test_memory_profiler_hook.py │ │ │ ├── test_num_class_check_hook.py │ │ │ ├── test_pipeline_switch_hook.py │ │ │ ├── test_sync_norm_hook.py │ │ │ ├── test_visualization_hook.py │ │ │ └── test_yolox_mode_switch_hook.py │ │ ├── test_optimizers │ │ │ ├── __init__.py │ │ │ └── test_layer_decay_optimizer_constructor.py │ │ ├── test_runner │ │ │ └── test_loops.py │ │ └── test_schedulers │ │ │ └── test_quadratic_warmup.py │ ├── test_evaluation │ │ └── test_metrics │ │ │ ├── __init__.py │ │ │ ├── test_cityscapes_metric.py │ │ │ ├── test_coco_metric.py │ │ │ ├── test_coco_occluded_metric.py │ │ │ ├── test_coco_panoptic_metric.py │ │ │ ├── test_coco_video_metric.py │ │ │ ├── test_crowdhuman_metric.py │ │ │ ├── test_dump_det_results.py │ │ │ ├── test_lvis_metric.py │ │ │ ├── test_mot_challenge_metrics.py │ │ │ ├── test_openimages_metric.py │ │ │ ├── test_reid_metric.py │ │ │ └── test_youtube_vis_metric.py │ ├── test_models │ │ ├── test_backbones │ │ │ ├── __init__.py │ │ │ ├── test_csp_darknet.py │ │ │ ├── test_detectors_resnet.py │ │ │ ├── test_efficientnet.py │ │ │ ├── test_hourglass.py │ │ │ ├── test_hrnet.py │ │ │ ├── test_mobilenet_v2.py │ │ │ ├── test_pvt.py │ │ │ ├── test_regnet.py │ │ │ ├── test_renext.py │ │ │ ├── test_res2net.py │ │ │ ├── test_resnest.py │ │ │ ├── test_resnet.py │ │ │ ├── test_swin.py │ │ │ ├── test_trident_resnet.py │ │ │ └── utils.py │ │ ├── test_data_preprocessors │ │ │ ├── test_batch_resize.py │ │ │ ├── test_boxinst_preprocessor.py │ │ │ ├── test_data_preprocessor.py │ │ │ └── test_track_data_preprocessor.py │ │ ├── test_dense_heads │ │ │ ├── test_anchor_head.py │ │ │ ├── test_atss_head.py │ │ │ ├── test_autoassign_head.py │ │ │ ├── test_boxinst_head.py │ │ │ ├── test_cascade_rpn_head.py │ │ │ ├── test_centernet_head.py │ │ │ ├── test_centernet_update_head.py │ │ │ ├── test_centripetal_head.py │ │ │ ├── test_condinst_head.py │ │ │ ├── test_corner_head.py │ │ │ ├── test_ddod_head.py │ │ │ ├── test_embedding_rpn_head.py │ │ │ ├── test_fcos_head.py │ │ │ ├── test_fovea_head.py │ │ │ ├── test_free_anchor_head.py │ │ │ ├── test_fsaf_head.py │ │ │ ├── test_ga_retina_head.py │ │ │ ├── test_ga_rpn_head.py │ │ │ ├── test_gfl_head.py │ │ │ ├── test_guided_anchor_head.py │ │ │ ├── test_lad_head.py │ │ │ ├── test_ld_head.py │ │ │ ├── test_nasfcos_head.py │ │ │ ├── test_paa_head.py │ │ │ ├── test_pisa_retinanet_head.py │ │ │ ├── test_pisa_ssd_head.py │ │ │ ├── test_reppoints_head.py │ │ │ ├── test_retina_sepBN_head.py │ │ │ ├── test_rpn_head.py │ │ │ ├── test_sabl_retina_head.py │ │ │ ├── test_solo_head.py │ │ │ ├── test_solov2_head.py │ │ │ ├── test_ssd_head.py │ │ │ ├── test_tood_head.py │ │ │ ├── test_vfnet_head.py │ │ │ ├── test_yolo_head.py │ │ │ ├── test_yolof_head.py │ │ │ └── test_yolox_head.py │ │ ├── test_detectors │ │ │ ├── test_conditional_detr.py │ │ │ ├── test_cornernet.py │ │ │ ├── test_dab_detr.py │ │ │ ├── test_deformable_detr.py │ │ │ ├── test_detr.py │ │ │ ├── test_dino.py │ │ │ ├── test_glip.py │ │ │ ├── test_kd_single_stage.py │ │ │ ├── test_maskformer.py │ │ │ ├── test_panoptic_two_stage_segmentor.py │ │ │ ├── test_rpn.py │ │ │ ├── test_semi_base.py │ │ │ ├── test_single_stage.py │ │ │ ├── test_single_stage_instance_seg.py │ │ │ └── test_two_stage.py │ │ ├── test_layers │ │ │ ├── __init__.py │ │ │ ├── test_brick_wrappers.py │ │ │ ├── test_conv_upsample.py │ │ │ ├── test_ema.py │ │ │ ├── test_inverted_residual.py │ │ │ ├── test_plugins.py │ │ │ ├── test_position_encoding.py │ │ │ ├── test_se_layer.py │ │ │ └── test_transformer.py │ │ ├── test_losses │ │ │ ├── test_gaussian_focal_loss.py │ │ │ ├── test_l2_loss.py │ │ │ ├── test_loss.py │ │ │ ├── test_multi_pos_cross_entropy_loss.py │ │ │ └── test_triplet_loss.py │ │ ├── test_mot │ │ │ ├── test_byte_track.py │ │ │ ├── test_deep_sort.py │ │ │ ├── test_oc_sort.py │ │ │ ├── test_qdtrack.py │ │ │ ├── test_sort.py │ │ │ └── test_strong_sort.py │ │ ├── test_necks │ │ │ ├── test_ct_resnet_neck.py │ │ │ └── test_necks.py │ │ ├── test_reid │ │ │ ├── test_base_reid.py │ │ │ ├── test_fc_module.py │ │ │ ├── test_gap.py │ │ │ └── test_linear_reid_head.py │ │ ├── test_roi_heads │ │ │ ├── test_bbox_heads │ │ │ │ ├── test_bbox_head.py │ │ │ │ ├── test_double_bbox_head.py │ │ │ │ ├── test_multi_instance_bbox_head.py │ │ │ │ ├── test_sabl_bbox_head.py │ │ │ │ └── test_scnet_bbox_head.py │ │ │ ├── test_cascade_roi_head.py │ │ │ ├── test_dynamic_roi_head.py │ │ │ ├── test_grid_roi_head.py │ │ │ ├── test_htc_roi_head.py │ │ │ ├── test_mask_heads │ │ │ │ ├── test_coarse_mask_head.py │ │ │ │ ├── test_fcn_mask_head.py │ │ │ │ ├── test_feature_relay_head.py │ │ │ │ ├── test_fused_semantic_head.py │ │ │ │ ├── test_global_context_head.py │ │ │ │ ├── test_grid_head.py │ │ │ │ ├── test_htc_mask_head.py │ │ │ │ ├── test_maskiou_head.py │ │ │ │ ├── test_scnet_mask_head.py │ │ │ │ └── test_scnet_semantic_head.py │ │ │ ├── test_mask_scoring_roI_head.py │ │ │ ├── test_multi_instance_roi_head.py │ │ │ ├── test_pisa_roi_head.py │ │ │ ├── test_point_rend_roi_head.py │ │ │ ├── test_roi_extractors │ │ │ │ ├── test_generic_roi_extractor.py │ │ │ │ └── test_single_level_roi_extractor.py │ │ │ ├── test_scnet_roi_head.py │ │ │ ├── test_sparse_roi_head.py │ │ │ ├── test_standard_roi_head.py │ │ │ └── test_trident_roi_head.py │ │ ├── test_seg_heads │ │ │ ├── test_heuristic_fusion_head.py │ │ │ ├── test_maskformer_fusion_head.py │ │ │ └── test_panoptic_fpn_head.py │ │ ├── test_task_modules │ │ │ ├── __init__.py │ │ │ ├── test_assigners │ │ │ │ ├── test_approx_max_iou_assigner.py │ │ │ │ ├── test_atss_assigner.py │ │ │ │ ├── test_center_region_assigner.py │ │ │ │ ├── test_dynamic_soft_label_assigner.py │ │ │ │ ├── test_grid_assigner.py │ │ │ │ ├── test_hungarian_assigner.py │ │ │ │ ├── test_max_iou_assigner.py │ │ │ │ ├── test_point_assigner.py │ │ │ │ ├── test_region_assigner.py │ │ │ │ ├── test_simota_assigner.py │ │ │ │ ├── test_task_aligned_assigner.py │ │ │ │ └── test_task_uniform_assigner.py │ │ │ ├── test_coder │ │ │ │ └── test_delta_xywh_bbox_coder.py │ │ │ ├── test_iou2d_calculator.py │ │ │ ├── test_prior_generators │ │ │ │ └── test_anchor_generator.py │ │ │ ├── test_samplers │ │ │ │ └── test_pesudo_sampler.py │ │ │ └── test_track │ │ │ │ ├── test_aflink.py │ │ │ │ ├── test_interpolation.py │ │ │ │ ├── test_kalman_filter.py │ │ │ │ └── test_similarity.py │ │ ├── test_trackers │ │ │ ├── test_byte_tracker.py │ │ │ ├── test_masktrack_rcnn_tracker.py │ │ │ ├── test_oc_sort_tracker.py │ │ │ ├── test_sort_tracker.py │ │ │ └── test_strong_sort_tracker.py │ │ ├── test_tracking_heads │ │ │ ├── test_mask2former_track_head.py │ │ │ ├── test_quasi_dense_embed_head.py │ │ │ ├── test_quasi_dense_track_head.py │ │ │ └── test_roi_embed_head.py │ │ ├── test_tta │ │ │ └── test_det_tta.py │ │ ├── test_utils │ │ │ ├── test_misc.py │ │ │ └── test_model_misc.py │ │ └── test_vis │ │ │ ├── test_mask2former.py │ │ │ └── test_masktrack_rcnn.py │ ├── test_structures │ │ ├── __init__.py │ │ ├── test_bbox │ │ │ ├── __init__.py │ │ │ ├── test_base_boxes.py │ │ │ ├── test_box_type.py │ │ │ ├── test_horizontal_boxes.py │ │ │ └── utils.py │ │ ├── test_det_data_sample.py │ │ ├── test_mask │ │ │ └── test_mask_structures.py │ │ ├── test_reid_data_sample.py │ │ └── test_track_data_sample.py │ ├── test_utils │ │ ├── test_benchmark.py │ │ ├── test_memory.py │ │ ├── test_replace_cfg_vals.py │ │ └── test_setup_env.py │ └── test_visualization │ │ ├── test_local_visualizer.py │ │ └── test_palette.py └── tools │ ├── analysis_tools │ ├── analyze_logs.py │ ├── analyze_results.py │ ├── benchmark.py │ ├── browse_dataset.py │ ├── coco_error_analysis.py │ ├── coco_occluded_separated_recall.py │ ├── confusion_matrix.py │ ├── eval_metric.py │ ├── get_flops.py │ ├── get_params.ipynb │ ├── mot │ │ ├── browse_dataset.py │ │ ├── dist_mot_search.sh │ │ ├── mot_error_visualize.py │ │ ├── mot_param_search.py │ │ └── slurm_mot_search.sh │ ├── optimize_anchors.py │ ├── robustness_eval.py │ ├── test_robustness.py │ └── visualize_preprocessd_image.py │ ├── dataset_converters │ ├── ade20k2coco.py │ ├── cityscapes.py │ ├── coco_stuff164k.py │ ├── crowdhuman2coco.py │ ├── images2coco.py │ ├── mot2coco.py │ ├── mot2reid.py │ ├── pascal_voc.py │ ├── prepare_coco_semantic_annos_from_panoptic_annos.py │ ├── scripts │ │ ├── preprocess_coco2017.sh │ │ ├── preprocess_voc2007.sh │ │ └── preprocess_voc2012.sh │ └── youtubevis2coco.py │ ├── deployment │ ├── mmdet2torchserve.py │ ├── mmdet_handler.py │ └── test_torchserver.py │ ├── dist_test.sh │ ├── dist_test_tracking.sh │ ├── dist_train.sh │ ├── misc │ ├── download_dataset.py │ ├── gen_coco_panoptic_test_info.py │ ├── get_crowdhuman_id_hw.py │ ├── get_image_metas.py │ ├── print_config.py │ └── split_coco.py │ ├── model_converters │ ├── detectron2_to_mmdet.py │ ├── detectron2pytorch.py │ ├── glip_to_mmdet.py │ ├── publish_model.py │ ├── regnet2mmdet.py │ ├── selfsup2mmdet.py │ ├── upgrade_model_version.py │ └── upgrade_ssd_version.py │ ├── slurm_test.sh │ ├── slurm_test_tracking.sh │ ├── slurm_train.sh │ ├── test.py │ ├── test_components.ipynb │ ├── test_tracking.py │ └── train.py ├── environment.yml └── segmentation ├── CITATION.cff ├── LICENSE ├── MANIFEST.in ├── README.md ├── configs ├── _base_ │ ├── datasets │ │ ├── mfnet │ │ │ └── mfnet_768x768_2bs.py │ │ └── vt │ │ │ └── rgbt_salient_384_8bs.py │ ├── default_runtime.py │ └── schedules │ │ ├── schedule_160k.py │ │ ├── schedule_160k_lr_reduced.py │ │ ├── schedule_20k.py │ │ ├── schedule_20k_sod.py │ │ ├── schedule_240k.py │ │ ├── schedule_25k.py │ │ ├── schedule_320k.py │ │ ├── schedule_40k.py │ │ └── schedule_80k.py ├── _vpt_rgbt_salient │ └── SETR │ │ └── ssim_416_iou_mla_v15_8x8b_20k.py └── _vpt_rgbt_segmentation │ └── MFNet │ └── SETR │ └── mla_v15_mae_coco_2xb2_80k_withBG.py ├── dataset-index.yml ├── docker ├── Dockerfile └── serve │ ├── Dockerfile │ ├── config.properties │ └── entrypoint.sh ├── mmseg ├── __init__.py ├── apis │ ├── __init__.py │ ├── inference.py │ ├── mmseg_inferencer.py │ ├── remote_sense_inferencer.py │ └── utils.py ├── datasets │ ├── __init__.py │ ├── ade.py │ ├── basesegdataset.py │ ├── bdd100k.py │ ├── chase_db1.py │ ├── cityscapes.py │ ├── coco_stuff.py │ ├── dark_zurich.py │ ├── dataset_wrappers.py │ ├── decathlon.py │ ├── drive.py │ ├── dsdl.py │ ├── hrf.py │ ├── isaid.py │ ├── isprs.py │ ├── levir.py │ ├── lip.py │ ├── loveda.py │ ├── mapillary.py │ ├── mfnet.py │ ├── my_basesegdataset.py │ ├── night_driving.py │ ├── nyu.py │ ├── pascal_context.py │ ├── potsdam.py │ ├── pst900.py │ ├── refuge.py │ ├── rgbt_sod.py │ ├── stare.py │ ├── synapse.py │ ├── transforms │ │ ├── __init__.py │ │ ├── formatting.py │ │ ├── loading.py │ │ ├── sod_formatting.py │ │ ├── sod_loading.py │ │ ├── sod_transforms.py │ │ └── transforms.py │ └── voc.py ├── engine │ ├── __init__.py │ ├── hooks │ │ ├── __init__.py │ │ └── visualization_hook.py │ ├── optimizers │ │ ├── __init__.py │ │ ├── force_default_constructor.py │ │ └── layer_decay_optimizer_constructor.py │ └── schedulers │ │ ├── __init__.py │ │ └── poly_ratio_scheduler.py ├── evaluation │ ├── __init__.py │ └── metrics │ │ ├── __init__.py │ │ ├── citys_metric.py │ │ ├── depth_metric.py │ │ ├── dummy_metric.py │ │ ├── iou_metric.py │ │ └── sod_metric.py ├── models │ ├── __init__.py │ ├── backbones │ │ ├── __init__.py │ │ ├── _vpt_beit │ │ │ ├── beit.py │ │ │ └── mmcv_custom │ │ │ │ ├── __init__.py │ │ │ │ ├── apex_runner │ │ │ │ ├── __init__.py │ │ │ │ ├── apex_iter_based_runner.py │ │ │ │ ├── checkpoint.py │ │ │ │ └── optimizer.py │ │ │ │ ├── checkpoint.py │ │ │ │ ├── layer_decay_optimizer_constructor.py │ │ │ │ ├── resize_transform.py │ │ │ │ └── train_api.py │ │ ├── beit.py │ │ ├── bisenetv1.py │ │ ├── bisenetv2.py │ │ ├── cgnet.py │ │ ├── ddrnet.py │ │ ├── erfnet.py │ │ ├── fast_scnn.py │ │ ├── hrnet.py │ │ ├── icnet.py │ │ ├── mae.py │ │ ├── mit.py │ │ ├── mobilenet_v2.py │ │ ├── mobilenet_v3.py │ │ ├── mscan.py │ │ ├── ops │ │ │ ├── functions │ │ │ │ ├── __init__.py │ │ │ │ └── ms_deform_attn_func.py │ │ │ └── modules │ │ │ │ ├── __init__.py │ │ │ │ └── ms_deform_attn.py │ │ ├── pidnet.py │ │ ├── resnest.py │ │ ├── resnet.py │ │ ├── resnext.py │ │ ├── stdc.py │ │ ├── swin.py │ │ ├── timm_backbone.py │ │ ├── twins.py │ │ ├── unet.py │ │ ├── vit.py │ │ ├── vit_rgbt_v15.py │ │ ├── vit_rgbt_v15_sod.py │ │ └── vpd.py │ ├── builder.py │ ├── data_preprocessor.py │ ├── data_preprocessor_for_sod.py │ ├── decode_heads │ │ ├── __init__.py │ │ ├── ann_head.py │ │ ├── apc_head.py │ │ ├── aspp_head.py │ │ ├── atm_head.py │ │ ├── atm_single_head.py │ │ ├── cascade_decode_head.py │ │ ├── cc_head.py │ │ ├── da_head.py │ │ ├── ddr_head.py │ │ ├── decode_head.py │ │ ├── dm_head.py │ │ ├── dnl_head.py │ │ ├── dpt_head.py │ │ ├── ema_head.py │ │ ├── enc_head.py │ │ ├── fcn_head.py │ │ ├── fpn_head.py │ │ ├── gc_head.py │ │ ├── ham_head.py │ │ ├── isa_head.py │ │ ├── knet_head.py │ │ ├── lraspp_head.py │ │ ├── mask2former_head.py │ │ ├── maskformer_head.py │ │ ├── nl_head.py │ │ ├── ocr_head.py │ │ ├── pid_head.py │ │ ├── point_head.py │ │ ├── psa_head.py │ │ ├── psp_head.py │ │ ├── rgbt_salient_decoder │ │ │ ├── decode_head.py │ │ │ ├── dpt_head.py │ │ │ ├── fcn_head.py │ │ │ ├── segmenter_mask_head.py │ │ │ ├── setr_mla_head.py │ │ │ ├── setr_up_head.py │ │ │ └── uper_head.py │ │ ├── segformer_head.py │ │ ├── segmenter_mask_head.py │ │ ├── sep_aspp_head.py │ │ ├── sep_fcn_head.py │ │ ├── setr_mla_head.py │ │ ├── setr_up_head.py │ │ ├── stdc_head.py │ │ ├── tpn_atm_head.py │ │ ├── uper_head.py │ │ └── vpd_depth_head.py │ ├── losses │ │ ├── __init__.py │ │ ├── accuracy.py │ │ ├── atm_loss.py │ │ ├── boundary_loss.py │ │ ├── criterion.py │ │ ├── cross_entropy_loss.py │ │ ├── dice_loss.py │ │ ├── focal_loss.py │ │ ├── huasdorff_distance_loss.py │ │ ├── kldiv_loss.py │ │ ├── lovasz_loss.py │ │ ├── misc.py │ │ ├── mix_ohem_cross_entropy_loss.py │ │ ├── ohem_cross_entropy_loss.py │ │ ├── silog_loss.py │ │ ├── sod_iou_loss.py │ │ ├── sod_ssim_loss.py │ │ ├── tversky_loss.py │ │ └── utils.py │ ├── necks │ │ ├── __init__.py │ │ ├── featurepyramid.py │ │ ├── fpn.py │ │ ├── ic_neck.py │ │ ├── jpu.py │ │ ├── mla_neck.py │ │ └── multilevel_neck.py │ ├── segmentors │ │ ├── __init__.py │ │ ├── base.py │ │ ├── cascade_encoder_decoder.py │ │ ├── depth_estimator.py │ │ ├── encoder_decoder.py │ │ ├── encoder_decoder_visualize.py │ │ ├── seg_tta.py │ │ └── sod_encoder_decoder.py │ └── utils │ │ ├── __init__.py │ │ ├── basic_block.py │ │ ├── embed.py │ │ ├── encoding.py │ │ ├── inverted_residual.py │ │ ├── make_divisible.py │ │ ├── ppm.py │ │ ├── res_layer.py │ │ ├── se_layer.py │ │ ├── self_attention_block.py │ │ ├── shape_convert.py │ │ ├── up_conv_block.py │ │ └── wrappers.py ├── registry │ ├── __init__.py │ └── registry.py ├── structures │ ├── __init__.py │ ├── sampler │ │ ├── __init__.py │ │ ├── base_pixel_sampler.py │ │ ├── builder.py │ │ └── ohem_pixel_sampler.py │ └── seg_data_sample.py ├── utils │ ├── __init__.py │ ├── class_names.py │ ├── collect_env.py │ ├── io.py │ ├── misc.py │ ├── set_env.py │ └── typing_utils.py ├── version.py └── visualization │ ├── __init__.py │ └── local_visualizer.py ├── model-index.yml ├── projects ├── Adabins │ ├── README.md │ ├── backbones │ │ ├── __init__.py │ │ └── adabins_backbone.py │ ├── configs │ │ ├── _base_ │ │ │ ├── datasets │ │ │ │ └── nyu.py │ │ │ ├── default_runtime.py │ │ │ └── models │ │ │ │ └── Adabins.py │ │ └── adabins │ │ │ ├── adabins_efficient_b5_4x16_25e_NYU_416x544.py │ │ │ └── adabins_efficient_b5_4x16_25e_kitti_352x704.py │ └── decode_head │ │ ├── __init__.py │ │ └── adabins_head.py ├── CAT-Seg │ ├── README.md │ ├── cat_seg │ │ ├── __init__.py │ │ ├── models │ │ │ ├── __init__.py │ │ │ ├── cat_aggregator.py │ │ │ ├── cat_head.py │ │ │ └── clip_ovseg.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── bpe_vocab │ │ │ └── bpe_simple_vocab_16e6.txt.gz │ │ │ ├── clip_model.py │ │ │ ├── clip_templates.py │ │ │ ├── clip_wrapper.py │ │ │ ├── self_attention_block.py │ │ │ └── tokenizer.py │ ├── configs │ │ ├── _base_ │ │ │ ├── datasets │ │ │ │ ├── ade20k_384x384.py │ │ │ │ ├── coco-stuff164k_384x384.py │ │ │ │ └── pascal_context_59_384x384.py │ │ │ ├── default_runtime.py │ │ │ └── schedules │ │ │ │ └── schedule_80k.py │ │ └── cat_seg │ │ │ ├── catseg_vitb-r101_4xb1-warmcoslr2e-4-adamw-80k_ade20k-384x384.py │ │ │ ├── catseg_vitb-r101_4xb1-warmcoslr2e-4-adamw-80k_pascal-context-59-384x384.py │ │ │ ├── catseg_vitb-r101_4xb2-warmcoslr2e-4-adamw-80k_coco-stuff164k-384x384.py │ │ │ ├── catseg_vitg-swin-b_4xb1-warmcoslr2e-4_adamw-80k_coco-stuff164k_384x384.py │ │ │ ├── catseg_vith-swin-b_4xb1-warmcoslr2e-4_adamw-80k_coco-stuff164k_384x384.py │ │ │ └── catseg_vitl-swin-b_4xb1-warmcoslr2e-4_adamw-80k_coco-stuff164k_384x384.py │ └── utils │ │ └── __init__.py ├── README.md ├── XDecoder │ └── README.md ├── bdd100k_dataset │ ├── README.md │ ├── configs │ │ ├── _base_ │ │ │ └── datasets │ │ │ │ └── bdd100k.py │ │ └── pspnet_r50-d8_4xb2-80k_bdd100k-512x1024.py │ ├── docs │ │ ├── en │ │ │ └── user_guides │ │ │ │ └── 2_dataset_prepare.md │ │ └── zh_cn │ │ │ └── user_guides │ │ │ └── 2_dataset_prepare.md │ └── mmseg │ │ └── datasets │ │ └── bdd100k.py ├── example_project │ ├── README.md │ ├── configs │ │ └── fcn_dummy-r50-d8_4xb2-40k_cityscapes-512x1024.py │ └── dummy │ │ ├── __init__.py │ │ └── dummy_resnet.py ├── faq.md ├── gid_dataset │ ├── configs │ │ ├── _base_ │ │ │ └── datasets │ │ │ │ └── gid.py │ │ └── deeplabv3plus_r101-d8_4xb2-240k_gid-256x256.py │ ├── mmseg │ │ └── datasets │ │ │ └── gid.py │ ├── tools │ │ └── dataset_converters │ │ │ ├── gid.py │ │ │ └── gid_select15imgFromAll.py │ └── user_guides │ │ └── 2_dataset_prepare.md ├── hssn │ ├── README.md │ ├── configs │ │ ├── _base_ │ │ │ ├── datasets │ │ │ │ └── cityscapes.py │ │ │ ├── default_runtime.py │ │ │ ├── models │ │ │ │ └── deeplabv3plus_r50-d8_vd_contrast.py │ │ │ └── schedules │ │ │ │ └── schedule_80k.py │ │ └── hssn │ │ │ └── hieraseg_deeplabv3plus_r101-d8_4xb2-80l_cityscapes-512x1024.py │ ├── decode_head │ │ ├── __init__.py │ │ └── sep_aspp_contrast_head.py │ └── losses │ │ ├── __init__.py │ │ ├── hiera_triplet_loss_cityscape.py │ │ └── tree_triplet_loss.py ├── isnet │ ├── README.md │ ├── configs │ │ └── isnet_r50-d8_8xb2-160k_cityscapes-512x1024.py │ └── decode_heads │ │ ├── __init__.py │ │ └── isnet_head.py ├── mapillary_dataset │ ├── README.md │ ├── configs │ │ ├── _base_ │ │ │ └── datasets │ │ │ │ ├── mapillary_v1.py │ │ │ │ ├── mapillary_v1_65.py │ │ │ │ └── mapillary_v2.py │ │ ├── deeplabv3plus_r101-d8_4xb2-240k_mapillay_v1-512x1024.py │ │ ├── deeplabv3plus_r101-d8_4xb2-240k_mapillay_v2-512x1024.py │ │ ├── pspnet_r101-d8_4xb2-240k_mapillay_v1-512x1024.py │ │ └── pspnet_r101-d8_4xb2-240k_mapillay_v2-512x1024.py │ ├── docs │ │ └── en │ │ │ └── user_guides │ │ │ └── 2_dataset_prepare.md │ └── mmseg │ │ └── datasets │ │ └── mapillary.py ├── medical │ └── 2d_image │ │ ├── ct │ │ └── cranium │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── cranium_512x512.py │ │ │ ├── fcn-unet-s5-d16_unet-{use-sigmoid}_1xb16-0.01-20k_cranium-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_cranium-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_cranium-512x512.py │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_cranium-512x512.py │ │ │ ├── datasets │ │ │ └── cranium_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── dermoscopy │ │ ├── isic2016_task1 │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_isic2016-task1-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_isic2016-task1-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_isic2016-task1-512x512.py │ │ │ │ └── isic2016-task1_512x512.py │ │ │ ├── datasets │ │ │ │ └── isic2016-task1_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ └── isic2017_task1 │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_isic2017-task1-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_isic2017-task1-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_isic2017-task1-512x512.py │ │ │ └── isic2017-task1_512x512.py │ │ │ ├── datasets │ │ │ └── isic2017-task1_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── endoscopy │ │ ├── kvasir_seg │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── fcn-unet-s5-d16_unet-{use-sigmoid}_1xb16-0.01-20k_kvasir-seg-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_kvasir-seg-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_kvasir-seg-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_kvasir-seg-512x512.py │ │ │ │ └── kvasir-seg_512x512.py │ │ │ ├── datasets │ │ │ │ └── kvasir-seg_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ └── kvasir_seg_aliyun │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_kvasir-seg-aliyun-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_kvasir-seg-aliyun-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_kvasir-seg-aliyun-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01lr-sigmoid-20k_kvasir-seg-aliyun-512x512.py │ │ │ └── kvasir-seg-aliyun_512x512.py │ │ │ ├── datasets │ │ │ └── kvasir-seg-aliyun_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── fluorescein_angriogram │ │ └── vampire │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_vampire-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_vampire-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_vampire-512x512.py │ │ │ └── vampire_512x512.py │ │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ └── vampire_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── fundus_photography │ │ ├── dr_hagis │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── dr-hagis_512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_dr-hagis-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_dr-hagis-512x512.py │ │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_dr-hagis-512x512.py │ │ │ ├── datasets │ │ │ │ └── dr-hagis_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ ├── gamma3 │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_gamma3-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_gamma3-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_gamma3-512x512.py │ │ │ │ └── gamma3_512x512.py │ │ │ ├── datasets │ │ │ │ └── gamma3_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ ├── orvs │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_orvs-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_orvs-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_orvs-512x512.py │ │ │ │ └── orvs_512x512.py │ │ │ ├── datasets │ │ │ │ └── orvs_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ └── rite │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_rite-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_rite-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_rite-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01lr-sigmoid-20k_rite-512x512.py │ │ │ └── rite_512x512.py │ │ │ ├── datasets │ │ │ └── rite_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── histopathology │ │ ├── breastCancerCellSegmentation │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── breastCancerCellSegmentation_512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_breastCancerCellSegmentation-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_breastCancerCellSegmentation-512x512.py │ │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_breastCancerCellSegmentation-512x512.py │ │ │ ├── datasets │ │ │ │ └── breastCancerCellSegmentation_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ ├── breast_cancer_cell_seg │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── breast-cancer-cell-seg_512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_breast-cancer-cell-seg-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_breast-cancer-cell-seg-512x512.py │ │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_breast-cancer-cell-seg-512x512.py │ │ │ ├── datasets │ │ │ │ └── breast-cancer-cell-seg_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ ├── conic2022_seg │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── conic2022-seg_512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_conic2022-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_conic2022-512x512.py │ │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_conic2022-512x512.py │ │ │ ├── conic2022_seg_dataset.png │ │ │ ├── datasets │ │ │ │ └── conic2022-seg_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ ├── consep │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── consep_512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_consep-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_consep-512x512.py │ │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_consep-512x512.py │ │ │ ├── datasets │ │ │ │ └── consep_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ ├── fusc2021 │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_fusc2021-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_fusc2021-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_fusc2021-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01lr-sigmoid-20k_fusc2021-512x512.py │ │ │ │ └── fusc2021_512x512.py │ │ │ ├── datasets │ │ │ │ └── fusc2021_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ ├── pannuke │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── fcn-unet-s5-d16_unet-{use-sigmoid}_1xb16-0.01-20k_bactteria-detection-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_pannuke-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_pannuke-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_pannuke-512x512.py │ │ │ │ └── pannuke_512x512.py │ │ │ ├── datasets │ │ │ │ └── pannuke_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ └── pcam │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_pcam-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_pcam-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_pcam-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01lr-sigmoid-20k_pcam-512x512.py │ │ │ └── pcam_512x512.py │ │ │ ├── datasets │ │ │ └── pcam_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── infrared_reflectance_imaging │ │ └── ravir │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_ravir-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_ravir-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_ravir-512x512.py │ │ │ └── ravir_512x512.py │ │ │ ├── datasets │ │ │ ├── __init__.py │ │ │ └── ravir_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── microscopy_images │ │ ├── 2pm_vessel │ │ │ ├── README.md │ │ │ ├── configs │ │ │ │ ├── 2pm-vessel_512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_2pm-vessel-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_2pm-vessel-512x512.py │ │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_2pm-vessel-512x512.py │ │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01lr-sigmoid-20k_bactteria-detection-512x512.py │ │ │ ├── datasets │ │ │ │ └── 2pm-vessel_dataset.py │ │ │ └── tools │ │ │ │ └── prepare_dataset.py │ │ └── bactteria_detection │ │ │ ├── README.md │ │ │ ├── configs │ │ │ ├── bactteria-detection_512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_bactteria-detection-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_bactteria-detection-512x512.py │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_bactteria-detection-512x512.py │ │ │ ├── datasets │ │ │ └── bactteria-detection_dataset.py │ │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── tools │ │ └── split_seg_dataset.py │ │ └── x_ray │ │ ├── chest_image_pneum │ │ ├── README.md │ │ ├── configs │ │ │ ├── chest-image-pneum_512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_chest-image-pneum-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_chest-image-pneum-512x512.py │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_chest-image-pneum-512x512.py │ │ ├── datasets │ │ │ └── chest-image-pneum_dataset.py │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── chest_x_ray_images_with_pneumothorax_masks │ │ ├── README.md │ │ ├── configs │ │ │ ├── chest-x-ray-images-with-pneumothorax-masks_512x512.py │ │ │ ├── fcn-unet-s5-d16_unet-{use-sigmoid}_1xb16-0.01-20k_chest-x-ray-images-with-pneumothorax-masks-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_chest-x-ray-images-with-pneumothorax-masks-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_chest-x-ray-images-with-pneumothorax-masks-512x512.py │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_chest-x-ray-images-with-pneumothorax-masks-512x512.py │ │ ├── datasets │ │ │ └── chest-x-ray-images-with-pneumothorax-masks_dataset.py │ │ └── tools │ │ │ └── prepare_dataset.py │ │ ├── covid_19_ct_cxr │ │ ├── README.md │ │ ├── configs │ │ │ ├── covid-19-ct-cxr_512x512.py │ │ │ ├── fcn-unet-s5-d16_unet-{use-sigmoid}_1xb16-0.01-20k_covid-19-ct-cxr-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_covid-19-ct-cxr-512x512.py │ │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_covid-19-ct-cxr-512x512.py │ │ │ └── fcn-unet-s5-d16_unet_1xb16-0.01-20k_covid-19-ct-cxr-512x512.py │ │ ├── datasets │ │ │ └── covid-19-ct-cxr_dataset.py │ │ └── tools │ │ │ └── prepare_dataset.py │ │ └── crass │ │ ├── README.md │ │ ├── configs │ │ ├── crass_512x512.py │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.0001-20k_crass-512x512.py │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.001-20k_crass-512x512.py │ │ ├── fcn-unet-s5-d16_unet_1xb16-0.01-20k_crass-512x512.py │ │ └── fcn-unet-s5-d16_unet_1xb16-lr0.01-sigmoid-20k_crass-512x512.py │ │ ├── datasets │ │ └── crass_dataset.py │ │ └── tools │ │ └── prepare_dataset.py ├── pp_mobileseg │ ├── README.md │ ├── backbones │ │ ├── __init__.py │ │ └── strideformer.py │ ├── configs │ │ ├── _base_ │ │ │ ├── datasets │ │ │ │ └── ade20k.py │ │ │ ├── default_runtime.py │ │ │ ├── models │ │ │ │ └── pp_mobile.py │ │ │ └── schedules │ │ │ │ └── schedule_80k.py │ │ └── pp_mobileseg │ │ │ ├── pp_mobileseg_mobilenetv3_2x16_80k_ade20k_512x512_base.py │ │ │ └── pp_mobileseg_mobilenetv3_2x16_80k_ade20k_512x512_tiny.py │ ├── decode_head │ │ ├── __init__.py │ │ └── pp_mobileseg_head.py │ └── inference_onnx.py ├── sam_inference_demo │ ├── README.md │ ├── sam │ │ ├── __init__.py │ │ ├── modeling │ │ │ ├── __init__.py │ │ │ ├── common.py │ │ │ ├── mask_decoder.py │ │ │ ├── prompt_encoder.py │ │ │ ├── sam.py │ │ │ └── transformer.py │ │ ├── sam_inferencer.py │ │ └── utils │ │ │ ├── __init__.py │ │ │ ├── amg.py │ │ │ └── transforms.py │ └── sam_image_demo.ipynb └── van │ ├── README.md │ ├── backbones │ ├── __init__.py │ └── van.py │ └── configs │ ├── _base_ │ ├── datasets │ │ └── ade20k.py │ └── models │ │ ├── van_fpn.py │ │ └── van_upernet.py │ └── van │ ├── van-b0_fpn_8xb4-40k_ade20k-512x512.py │ ├── van-b1_fpn_8xb4-40k_ade20k-512x512.py │ ├── van-b2_fpn_8xb4-40k_ade20k-512x512.py │ ├── van-b2_upernet_4xb2-160k_ade20k-512x512.py │ ├── van-b3_fpn_8xb4-40k_ade20k-512x512.py │ ├── van-b3_upernet_4xb2-160k_ade20k-512x512.py │ ├── van-b4-in22kpre_upernet_4xb4-160k_ade20k-512x512.py │ ├── van-b4_upernet_4xb4-160k_ade20k-512x512.py │ ├── van-b5-in22kpre_upernet_4xb2-160k_ade20k-512x512.py │ └── van-b6-in22kpre_upernet_4xb2-160k_ade20k-512x512.py ├── requirements.txt ├── requirements ├── albu.txt ├── docs.txt ├── mminstall.txt ├── optional.txt ├── readthedocs.txt ├── runtime.txt └── tests.txt ├── resources ├── 3dogs.jpg ├── 3dogs_mask.png ├── cascade_encoder_decoder_dataflow.png ├── encoder_decoder_dataflow.png ├── miaomiao_qrcode.jpg ├── mmseg-logo.png ├── seg_demo.gif ├── test_step.png └── train_step.png ├── scripts ├── train_seg.sh └── train_sod.sh ├── setup.cfg ├── setup.py ├── tests ├── __init__.py ├── data │ ├── biomedical.nii.gz │ ├── biomedical.npy │ ├── biomedical.pkl │ ├── biomedical_ann.nii.gz │ ├── color.jpg │ ├── dataset.json │ ├── dsdl_seg │ │ ├── config.py │ │ ├── defs │ │ │ ├── class-dom.yaml │ │ │ └── segmentation-def.yaml │ │ └── set-train │ │ │ ├── train.yaml │ │ │ └── train_samples.json │ ├── gray.jpg │ ├── pseudo_bdd100k_dataset │ │ ├── images │ │ │ └── 10k │ │ │ │ ├── train │ │ │ │ ├── 0004a4c0-d4dff0ad.jpg │ │ │ │ ├── 00054602-3bf57337.jpg │ │ │ │ └── 00067cfb-e535423e.jpg │ │ │ │ └── val │ │ │ │ ├── 7d06fefd-f7be05a6.jpg │ │ │ │ ├── 7d128593-0ccfea4c.jpg │ │ │ │ └── 7d15b18b-1e0d6e3f.jpg │ │ └── labels │ │ │ └── sem_seg │ │ │ ├── colormaps │ │ │ ├── train │ │ │ │ ├── 0004a4c0-d4dff0ad.png │ │ │ │ ├── 00054602-3bf57337.png │ │ │ │ └── 00067cfb-e535423e.png │ │ │ └── val │ │ │ │ ├── 7d128593-0ccfea4c.png │ │ │ │ ├── 7d15b18b-1e0d6e3f.png │ │ │ │ └── 7d2f7975-e0c1c5a7.png │ │ │ └── masks │ │ │ ├── train │ │ │ ├── 0004a4c0-d4dff0ad.png │ │ │ ├── 00054602-3bf57337.png │ │ │ └── 00067cfb-e535423e.png │ │ │ └── val │ │ │ ├── 7d06fefd-f7be05a6.png │ │ │ ├── 7d128593-0ccfea4c.png │ │ │ └── 7d15b18b-1e0d6e3f.png │ ├── pseudo_cityscapes_dataset │ │ ├── gtFine │ │ │ └── val │ │ │ │ └── frankfurt │ │ │ │ ├── frankfurt_000000_000294_gtFine_instanceIds.png │ │ │ │ ├── frankfurt_000000_000294_gtFine_labelIds.png │ │ │ │ └── frankfurt_000000_000294_gtFine_labelTrainIds.png │ │ └── leftImg8bit │ │ │ └── val │ │ │ └── frankfurt │ │ │ └── frankfurt_000000_000294_leftImg8bit.png │ ├── pseudo_dataset │ │ ├── gts │ │ │ ├── 00000_gt.png │ │ │ ├── 00001_gt.png │ │ │ ├── 00002_gt.png │ │ │ ├── 00003_gt.png │ │ │ └── 00004_gt.png │ │ ├── imgs │ │ │ ├── 00000_img.jpg │ │ │ ├── 00001_img.jpg │ │ │ ├── 00002_img.jpg │ │ │ ├── 00003_img.jpg │ │ │ └── 00004_img.jpg │ │ └── splits │ │ │ ├── train.txt │ │ │ └── val.txt │ ├── pseudo_isaid_dataset │ │ ├── ann_dir │ │ │ ├── P0000_0_896_1024_1920_instance_color_RGB.png │ │ │ └── P0000_0_896_1536_2432_instance_color_RGB.png │ │ ├── img_dir │ │ │ ├── P0000_0_896_1024_1920.png │ │ │ └── P0000_0_896_1536_2432.png │ │ └── splits │ │ │ ├── train.txt │ │ │ └── val.txt │ ├── pseudo_lip_dataset │ │ ├── train_images │ │ │ └── 684_2150041.jpg │ │ ├── train_segmentations │ │ │ └── 684_2150041.png │ │ ├── val_images │ │ │ └── 86_185913.jpg │ │ └── val_segmentations │ │ │ └── 86_185913.png │ ├── pseudo_loveda_dataset │ │ ├── ann_dir │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ │ └── img_dir │ │ │ ├── 0.png │ │ │ ├── 1.png │ │ │ └── 2.png │ ├── pseudo_mapillary_dataset │ │ ├── images │ │ │ └── __CRyFzoDOXn6unQ6a3DnQ.jpg │ │ ├── v1.2 │ │ │ └── __CRyFzoDOXn6unQ6a3DnQ.png │ │ └── v2.0 │ │ │ └── __CRyFzoDOXn6unQ6a3DnQ.png │ ├── pseudo_nyu_dataset │ │ ├── annotations │ │ │ └── bookstore_0001d_00001.png │ │ └── images │ │ │ └── bookstore_0001d_00001.jpg │ ├── pseudo_potsdam_dataset │ │ ├── ann_dir │ │ │ └── 2_10_0_0_512_512.png │ │ └── img_dir │ │ │ └── 2_10_0_0_512_512.png │ ├── pseudo_refuge_dataset │ │ ├── ann_dir │ │ │ └── pseudo_g0001.png │ │ └── img_dir │ │ │ └── pseudo_g0001.png │ ├── pseudo_synapse_dataset │ │ ├── ann_dir │ │ │ ├── case0005_slice000.png │ │ │ └── case0005_slice001.png │ │ └── img_dir │ │ │ ├── case0005_slice000.jpg │ │ │ └── case0005_slice001.jpg │ ├── pseudo_vaihingen_dataset │ │ ├── ann_dir │ │ │ └── area1_0_0_512_512.png │ │ └── img_dir │ │ │ └── area1_0_0_512_512.png │ └── seg.png ├── test_apis │ ├── test_inferencer.py │ ├── test_rs_inferencer.py │ └── utils.py ├── test_config.py ├── test_datasets │ ├── test_dataset.py │ ├── test_dataset_builder.py │ ├── test_formatting.py │ ├── test_loading.py │ ├── test_transform.py │ └── test_tta.py ├── test_digit_version.py ├── test_engine │ ├── test_layer_decay_optimizer_constructor.py │ ├── test_optimizer.py │ └── test_visualization_hook.py ├── test_evaluation │ └── test_metrics │ │ ├── test_citys_metric.py │ │ ├── test_depth_metric.py │ │ └── test_iou_metric.py ├── test_models │ ├── __init__.py │ ├── test_backbones │ │ ├── __init__.py │ │ ├── test_beit.py │ │ ├── test_bisenetv1.py │ │ ├── test_bisenetv2.py │ │ ├── test_blocks.py │ │ ├── test_cgnet.py │ │ ├── test_erfnet.py │ │ ├── test_fast_scnn.py │ │ ├── test_hrnet.py │ │ ├── test_icnet.py │ │ ├── test_mae.py │ │ ├── test_mit.py │ │ ├── test_mobilenet_v3.py │ │ ├── test_mscan.py │ │ ├── test_pidnet.py │ │ ├── test_resnest.py │ │ ├── test_resnet.py │ │ ├── test_resnext.py │ │ ├── test_stdc.py │ │ ├── test_swin.py │ │ ├── test_timm_backbone.py │ │ ├── test_twins.py │ │ ├── test_unet.py │ │ ├── test_vit.py │ │ ├── test_vpd.py │ │ └── utils.py │ ├── test_data_preprocessor.py │ ├── test_forward.py │ ├── test_heads │ │ ├── __init__.py │ │ ├── test_ann_head.py │ │ ├── test_apc_head.py │ │ ├── test_aspp_head.py │ │ ├── test_cc_head.py │ │ ├── test_decode_head.py │ │ ├── test_dm_head.py │ │ ├── test_dnl_head.py │ │ ├── test_dpt_head.py │ │ ├── test_ema_head.py │ │ ├── test_fcn_head.py │ │ ├── test_gc_head.py │ │ ├── test_ham_head.py │ │ ├── test_isa_head.py │ │ ├── test_lraspp_head.py │ │ ├── test_mask2former_head.py │ │ ├── test_maskformer_head.py │ │ ├── test_nl_head.py │ │ ├── test_ocr_head.py │ │ ├── test_pidnet_head.py │ │ ├── test_psa_head.py │ │ ├── test_psp_head.py │ │ ├── test_segformer_head.py │ │ ├── test_segmenter_mask_head.py │ │ ├── test_setr_mla_head.py │ │ ├── test_setr_up_head.py │ │ ├── test_uper_head.py │ │ ├── test_vpd_depth_head.py │ │ └── utils.py │ ├── test_losses │ │ ├── test_dice_loss.py │ │ ├── test_huasdorff_distance_loss.py │ │ ├── test_kldiv_loss.py │ │ ├── test_silog_loss.py │ │ └── test_tversky_loss.py │ ├── test_necks │ │ ├── __init__.py │ │ ├── test_feature2pyramid.py │ │ ├── test_fpn.py │ │ ├── test_ic_neck.py │ │ ├── test_jpu.py │ │ ├── test_mla_neck.py │ │ └── test_multilevel_neck.py │ ├── test_segmentors │ │ ├── __init__.py │ │ ├── test_cascade_encoder_decoder.py │ │ ├── test_depth_estimator.py │ │ ├── test_encoder_decoder.py │ │ ├── test_seg_tta_model.py │ │ └── utils.py │ └── test_utils │ │ ├── __init__.py │ │ ├── test_embed.py │ │ └── test_shape_convert.py ├── test_sampler.py ├── test_structures │ └── test_seg_data_sample.py ├── test_utils │ ├── test_io.py │ └── test_set_env.py └── test_visualization │ └── test_local_visualizer.py └── tools ├── analysis_tools ├── analyze_logs.py ├── benchmark.py ├── browse_dataset.py ├── confusion_matrix.py ├── get_flops.py └── visualization_cam.py ├── dataset_converters ├── chase_db1.py ├── cityscapes.py ├── coco_stuff10k.py ├── coco_stuff164k.py ├── drive.py ├── hrf.py ├── isaid.py ├── levircd.py ├── loveda.py ├── mfnet.py ├── nyu.py ├── pascal_context.py ├── potsdam.py ├── pst900.py ├── refuge.py ├── stare.py ├── synapse.py ├── vaihingen.py └── voc_aug.py ├── deployment └── pytorch2torchscript.py ├── dist_test.sh ├── dist_train.sh ├── misc ├── browse_dataset.py ├── print_config.py └── publish_model.py ├── model_converters ├── beit2mmseg.py ├── mit2mmseg.py ├── stdc2mmseg.py ├── swin2mmseg.py ├── twins2mmseg.py ├── vit2mmseg.py └── vitjax2mmseg.py ├── slurm_test.sh ├── slurm_train.sh ├── test.py ├── torchserve ├── mmseg2torchserve.py ├── mmseg_handler.py └── test_torchserve.py └── train.py /.gitignore: -------------------------------------------------------------------------------- 1 | .DS_Store 2 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/README.md -------------------------------------------------------------------------------- /assets/banner.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/assets/banner.png -------------------------------------------------------------------------------- /assets/meta_diagram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/assets/meta_diagram.jpg -------------------------------------------------------------------------------- /detection/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/CITATION.cff -------------------------------------------------------------------------------- /detection/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/LICENSE -------------------------------------------------------------------------------- /detection/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/MANIFEST.in -------------------------------------------------------------------------------- /detection/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /detection/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /detection/configs/_base_/schedules/schedule_1x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/configs/_base_/schedules/schedule_1x.py -------------------------------------------------------------------------------- /detection/configs/_base_/schedules/schedule_20e.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/configs/_base_/schedules/schedule_20e.py -------------------------------------------------------------------------------- /detection/configs/_base_/schedules/schedule_2x.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/configs/_base_/schedules/schedule_2x.py -------------------------------------------------------------------------------- /detection/dataset-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/dataset-index.yml -------------------------------------------------------------------------------- /detection/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/docker/Dockerfile -------------------------------------------------------------------------------- /detection/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/docker/serve/Dockerfile -------------------------------------------------------------------------------- /detection/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/docker/serve/config.properties -------------------------------------------------------------------------------- /detection/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /detection/docker/serve_cn/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/docker/serve_cn/Dockerfile -------------------------------------------------------------------------------- /detection/mmdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/apis/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/apis/det_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/apis/det_inferencer.py -------------------------------------------------------------------------------- /detection/mmdet/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/apis/inference.py -------------------------------------------------------------------------------- /detection/mmdet/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /detection/mmdet/configs/retinanet/retinanet_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/configs/retinanet/retinanet_tta.py -------------------------------------------------------------------------------- /detection/mmdet/configs/rtmdet/rtmdet_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/configs/rtmdet/rtmdet_tta.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/ade20k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/ade20k.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/api_wrappers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/api_wrappers/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/api_wrappers/coco_api.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/api_wrappers/coco_api.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/base_det_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/base_det_dataset.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/base_semseg_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/base_semseg_dataset.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/base_video_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/base_video_dataset.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/cityscapes.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/coco.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/coco_caption.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/coco_caption.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/coco_panoptic.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/coco_semantic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/coco_semantic.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/crowdhuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/crowdhuman.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/deepfashion.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/dsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/dsdl.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/dual_spectral.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/dual_spectral.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/isaid.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/lvis.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/mot_challenge_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/mot_challenge_dataset.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/objects365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/objects365.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/openimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/openimages.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/refcoco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/refcoco.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/reid_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/reid_dataset.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/samplers/batch_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/samplers/batch_sampler.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/samplers/track_img_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/samplers/track_img_sampler.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/colorspace.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/colorspace.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/formatting.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/frame_sampling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/frame_sampling.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/geometric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/geometric.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/instaboost.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/loading.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/transforms.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/transforms/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/transforms/wrappers.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/utils.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/voc.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/wider_face.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/xml_style.py -------------------------------------------------------------------------------- /detection/mmdet/datasets/youtube_vis_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/datasets/youtube_vis_dataset.py -------------------------------------------------------------------------------- /detection/mmdet/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/checkloss_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/checkloss_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/mean_teacher_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/mean_teacher_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/memory_profiler_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/memory_profiler_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/num_class_check_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/num_class_check_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/pipeline_switch_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/pipeline_switch_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/set_epoch_info_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/set_epoch_info_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/sync_norm_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/sync_norm_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/utils.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/visualization_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/visualization_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/hooks/yolox_mode_switch_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/hooks/yolox_mode_switch_hook.py -------------------------------------------------------------------------------- /detection/mmdet/engine/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/optimizers/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/engine/runner/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/runner/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/engine/runner/loops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/runner/loops.py -------------------------------------------------------------------------------- /detection/mmdet/engine/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/schedulers/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/engine/schedulers/quadratic_warmup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/engine/schedulers/quadratic_warmup.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/functional/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/functional/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/functional/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/functional/bbox_overlaps.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/functional/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/functional/class_names.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/functional/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/functional/mean_ap.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/functional/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/functional/recall.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/functional/ytvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/functional/ytvis.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/functional/ytviseval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/functional/ytviseval.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/coco_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/coco_metric.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/dump_det_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/dump_det_results.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/kaist/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/kaist/coco.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/kaist/coco_.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/kaist/coco_.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/kaist/eval_demo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/kaist/eval_demo.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/lvis_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/lvis_metric.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/refseg_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/refseg_metric.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/reid_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/reid_metric.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/semseg_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/semseg_metric.py -------------------------------------------------------------------------------- /detection/mmdet/evaluation/metrics/voc_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/evaluation/metrics/voc_metric.py -------------------------------------------------------------------------------- /detection/mmdet/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/csp_darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/csp_darknet.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/cspnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/cspnext.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/darknet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/darknet.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/detectors_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/detectors_resnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/detectors_resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/detectors_resnext.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/efficientnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/efficientnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/hourglass.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/hrnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/pvt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/pvt.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/regnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/res2net.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/resnest.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/resnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/resnext.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/ssd_vgg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/ssd_vgg.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/swin.py -------------------------------------------------------------------------------- /detection/mmdet/models/backbones/trident_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/backbones/trident_resnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/data_preprocessors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/data_preprocessors/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/anchor_free_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/anchor_free_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/anchor_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/atss_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/atss_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/autoassign_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/autoassign_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/base_dense_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/base_dense_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/base_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/base_mask_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/boxinst_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/boxinst_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/cascade_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/cascade_rpn_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/centernet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/centernet_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/centripetal_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/centripetal_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/condinst_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/condinst_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/corner_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/dab_detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/dab_detr_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/ddod_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/ddod_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/detr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/detr_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/dino_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/dino_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/fcos_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/fovea_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/fovea_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/fsaf_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/ga_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/ga_retina_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/ga_rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/ga_rpn_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/gfl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/gfl_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/lad_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/lad_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/ld_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/mask2former_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/mask2former_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/maskformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/maskformer_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/nasfcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/nasfcos_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/paa_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/pisa_ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/pisa_ssd_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/reppoints_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/reppoints_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/retina_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/rpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/rpn_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/rtmdet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/rtmdet_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/rtmdet_ins_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/rtmdet_ins_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/sabl_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/sabl_retina_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/solo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/solo_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/solov2_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/solov2_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/ssd_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/ssd_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/tood_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/tood_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/vfnet_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/yolact_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/yolo_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/yolo_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/yolof_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/yolof_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/dense_heads/yolox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/dense_heads/yolox_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/atss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/atss.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/autoassign.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/autoassign.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/base.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/base_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/base_detr.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/boxinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/boxinst.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/cascade_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/cascade_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/centernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/centernet.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/condinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/condinst.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/conditional_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/conditional_detr.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/cornernet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/cornernet.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/crowddet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/crowddet.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/d2_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/d2_wrapper.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/dab_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/dab_detr.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/ddod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/ddod.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/deformable_detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/deformable_detr.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/detr.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/detr.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/dino.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/dino.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/fast_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/fast_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/faster_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/faster_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/fcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/fcos.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/fovea.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/fovea.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/fsaf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/fsaf.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/gfl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/gfl.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/glip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/glip.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/grid_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/grid_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/htc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/htc.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/kd_one_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/kd_one_stage.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/lad.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/lad.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/mask2former.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/mask2former.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/mask_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/mask_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/mask_scoring_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/mask_scoring_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/maskformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/maskformer.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/nasfcos.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/nasfcos.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/paa.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/paa.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/panoptic_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/panoptic_fpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/point_rend.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/point_rend.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/queryinst.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/queryinst.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/reppoints_detector.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/reppoints_detector.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/retinanet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/retinanet.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/rpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/rpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/rtmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/rtmdet.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/scnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/scnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/semi_base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/semi_base.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/single_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/single_stage.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/soft_teacher.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/soft_teacher.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/solo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/solo.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/solov2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/solov2.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/sparse_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/sparse_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/tood.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/tood.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/two_stage.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/two_stage.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/vfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/vfnet.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/yolact.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/yolact.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/yolo.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/yolo.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/yolof.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/yolof.py -------------------------------------------------------------------------------- /detection/mmdet/models/detectors/yolox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/detectors/yolox.py -------------------------------------------------------------------------------- /detection/mmdet/models/language_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/language_models/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/language_models/bert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/language_models/bert.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/activations.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/activations.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/bbox_nms.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/brick_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/brick_wrappers.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/conv_upsample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/conv_upsample.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/csp_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/csp_layer.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/dropblock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/dropblock.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/ema.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/inverted_residual.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/matrix_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/matrix_nms.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/normed_predictor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/normed_predictor.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/pixel_decoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/pixel_decoder.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/positional_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/positional_encoding.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/res_layer.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/se_layer.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/transformer/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/transformer/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/layers/transformer/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/layers/transformer/utils.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/accuracy.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/ae_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/ae_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/balanced_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/balanced_l1_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/cross_entropy_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/cross_entropy_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/dice_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/eqlv2_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/eqlv2_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/focal_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/gaussian_focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/gaussian_focal_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/gfocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/gfocal_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/ghm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/ghm_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/iou_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/kd_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/kd_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/l2_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/l2_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/margin_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/margin_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/mse_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/mse_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/pisa_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/pisa_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/seesaw_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/seesaw_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/smooth_l1_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/smooth_l1_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/triplet_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/triplet_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/utils.py -------------------------------------------------------------------------------- /detection/mmdet/models/losses/varifocal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/losses/varifocal_loss.py -------------------------------------------------------------------------------- /detection/mmdet/models/mot/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/mot/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/mot/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/mot/base.py -------------------------------------------------------------------------------- /detection/mmdet/models/mot/bytetrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/mot/bytetrack.py -------------------------------------------------------------------------------- /detection/mmdet/models/mot/deep_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/mot/deep_sort.py -------------------------------------------------------------------------------- /detection/mmdet/models/mot/ocsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/mot/ocsort.py -------------------------------------------------------------------------------- /detection/mmdet/models/mot/qdtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/mot/qdtrack.py -------------------------------------------------------------------------------- /detection/mmdet/models/mot/strongsort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/mot/strongsort.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/bfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/bfp.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/channel_mapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/channel_mapper.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/cspnext_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/cspnext_pafpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/ct_resnet_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/ct_resnet_neck.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/dilated_encoder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/dilated_encoder.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/dyhead.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/dyhead.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/fpg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/fpg.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/fpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/fpn_carafe.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/fpn_carafe.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/hrfpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/hrfpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/nas_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/nas_fpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/nasfcos_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/nasfcos_fpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/pafpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/rfp.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/rfp.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/ssd_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/ssd_neck.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/ssh.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/ssh.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/yolo_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/yolo_neck.py -------------------------------------------------------------------------------- /detection/mmdet/models/necks/yolox_pafpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/necks/yolox_pafpn.py -------------------------------------------------------------------------------- /detection/mmdet/models/reid/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/reid/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/reid/base_reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/reid/base_reid.py -------------------------------------------------------------------------------- /detection/mmdet/models/reid/fc_module.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/reid/fc_module.py -------------------------------------------------------------------------------- /detection/mmdet/models/reid/gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/reid/gap.py -------------------------------------------------------------------------------- /detection/mmdet/models/reid/linear_reid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/reid/linear_reid_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/base_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/base_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/cascade_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/cascade_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/double_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/double_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/dynamic_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/dynamic_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/grid_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/grid_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/htc_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/htc_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/pisa_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/pisa_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/scnet_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/scnet_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/sparse_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/sparse_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/standard_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/standard_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/test_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/test_mixins.py -------------------------------------------------------------------------------- /detection/mmdet/models/roi_heads/trident_roi_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/roi_heads/trident_roi_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/seg_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/seg_heads/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/seg_heads/base_semantic_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/seg_heads/base_semantic_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/seg_heads/panoptic_fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/seg_heads/panoptic_fpn_head.py -------------------------------------------------------------------------------- /detection/mmdet/models/task_modules/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/task_modules/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/task_modules/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/task_modules/builder.py -------------------------------------------------------------------------------- /detection/mmdet/models/task_modules/coders/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/task_modules/coders/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/task_modules/tracking/aflink.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/task_modules/tracking/aflink.py -------------------------------------------------------------------------------- /detection/mmdet/models/test_time_augs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/test_time_augs/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/test_time_augs/det_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/test_time_augs/det_tta.py -------------------------------------------------------------------------------- /detection/mmdet/models/test_time_augs/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/test_time_augs/merge_augs.py -------------------------------------------------------------------------------- /detection/mmdet/models/trackers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/trackers/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/trackers/base_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/trackers/base_tracker.py -------------------------------------------------------------------------------- /detection/mmdet/models/trackers/byte_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/trackers/byte_tracker.py -------------------------------------------------------------------------------- /detection/mmdet/models/trackers/ocsort_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/trackers/ocsort_tracker.py -------------------------------------------------------------------------------- /detection/mmdet/models/trackers/quasi_dense_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/trackers/quasi_dense_tracker.py -------------------------------------------------------------------------------- /detection/mmdet/models/trackers/sort_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/trackers/sort_tracker.py -------------------------------------------------------------------------------- /detection/mmdet/models/trackers/strongsort_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/trackers/strongsort_tracker.py -------------------------------------------------------------------------------- /detection/mmdet/models/tracking_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/tracking_heads/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/gaussian_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/gaussian_target.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/image.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/make_divisible.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/misc.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/panoptic_gt_processing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/panoptic_gt_processing.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/point_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/point_sample.py -------------------------------------------------------------------------------- /detection/mmdet/models/utils/vlfuse_helper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/utils/vlfuse_helper.py -------------------------------------------------------------------------------- /detection/mmdet/models/vis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/vis/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/models/vis/mask2former_vis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/vis/mask2former_vis.py -------------------------------------------------------------------------------- /detection/mmdet/models/vis/masktrack_rcnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/models/vis/masktrack_rcnn.py -------------------------------------------------------------------------------- /detection/mmdet/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/registry.py -------------------------------------------------------------------------------- /detection/mmdet/scripts/train_od.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/scripts/train_od.sh -------------------------------------------------------------------------------- /detection/mmdet/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/structures/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/bbox/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/structures/bbox/base_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/bbox/base_boxes.py -------------------------------------------------------------------------------- /detection/mmdet/structures/bbox/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/bbox/bbox_overlaps.py -------------------------------------------------------------------------------- /detection/mmdet/structures/bbox/box_type.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/bbox/box_type.py -------------------------------------------------------------------------------- /detection/mmdet/structures/bbox/horizontal_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/bbox/horizontal_boxes.py -------------------------------------------------------------------------------- /detection/mmdet/structures/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/bbox/transforms.py -------------------------------------------------------------------------------- /detection/mmdet/structures/det_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/det_data_sample.py -------------------------------------------------------------------------------- /detection/mmdet/structures/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/mask/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/structures/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/mask/mask_target.py -------------------------------------------------------------------------------- /detection/mmdet/structures/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/mask/structures.py -------------------------------------------------------------------------------- /detection/mmdet/structures/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/mask/utils.py -------------------------------------------------------------------------------- /detection/mmdet/structures/reid_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/reid_data_sample.py -------------------------------------------------------------------------------- /detection/mmdet/structures/track_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/structures/track_data_sample.py -------------------------------------------------------------------------------- /detection/mmdet/testing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/testing/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/testing/_fast_stop_training_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/testing/_fast_stop_training_hook.py -------------------------------------------------------------------------------- /detection/mmdet/testing/_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/testing/_utils.py -------------------------------------------------------------------------------- /detection/mmdet/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/utils/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/benchmark.py -------------------------------------------------------------------------------- /detection/mmdet/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/collect_env.py -------------------------------------------------------------------------------- /detection/mmdet/utils/compat_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/compat_config.py -------------------------------------------------------------------------------- /detection/mmdet/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/contextmanagers.py -------------------------------------------------------------------------------- /detection/mmdet/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/dist_utils.py -------------------------------------------------------------------------------- /detection/mmdet/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/logger.py -------------------------------------------------------------------------------- /detection/mmdet/utils/memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/memory.py -------------------------------------------------------------------------------- /detection/mmdet/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/misc.py -------------------------------------------------------------------------------- /detection/mmdet/utils/mot_error_visualize.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/mot_error_visualize.py -------------------------------------------------------------------------------- /detection/mmdet/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/profiling.py -------------------------------------------------------------------------------- /detection/mmdet/utils/replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/replace_cfg_vals.py -------------------------------------------------------------------------------- /detection/mmdet/utils/setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/setup_env.py -------------------------------------------------------------------------------- /detection/mmdet/utils/split_batch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/split_batch.py -------------------------------------------------------------------------------- /detection/mmdet/utils/typing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/typing_utils.py -------------------------------------------------------------------------------- /detection/mmdet/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/util_mixins.py -------------------------------------------------------------------------------- /detection/mmdet/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/utils/util_random.py -------------------------------------------------------------------------------- /detection/mmdet/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/version.py -------------------------------------------------------------------------------- /detection/mmdet/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/visualization/__init__.py -------------------------------------------------------------------------------- /detection/mmdet/visualization/local_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/visualization/local_visualizer.py -------------------------------------------------------------------------------- /detection/mmdet/visualization/palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/mmdet/visualization/palette.py -------------------------------------------------------------------------------- /detection/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/model-index.yml -------------------------------------------------------------------------------- /detection/projects/ViTDet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/README.md -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/__init__.py -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/ops/README.md: -------------------------------------------------------------------------------- 1 | ``` 2 | sh make.sh 3 | ``` 4 | -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/ops/make.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/ops/make.sh -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/ops/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/ops/setup.py -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/ops/src/vision.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/ops/src/vision.cpp -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/ops/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/ops/test.py -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/simple_fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/simple_fpn.py -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/vit.py -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/vit_rgbt_v15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/vit_rgbt_v15.py -------------------------------------------------------------------------------- /detection/projects/ViTDet/vitdet/vit_rgbt_v15_ir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/ViTDet/vitdet/vit_rgbt_v15_ir.py -------------------------------------------------------------------------------- /detection/projects/gradio_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/gradio_demo/README.md -------------------------------------------------------------------------------- /detection/projects/gradio_demo/launch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/projects/gradio_demo/launch.py -------------------------------------------------------------------------------- /detection/pytest.ini: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/pytest.ini -------------------------------------------------------------------------------- /detection/r: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements.txt -------------------------------------------------------------------------------- /detection/requirements/albu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements/albu.txt -------------------------------------------------------------------------------- /detection/requirements/build.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements/build.txt -------------------------------------------------------------------------------- /detection/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements/docs.txt -------------------------------------------------------------------------------- /detection/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv>=2.0.0rc4,<2.1.0 2 | mmengine>=0.7.1,<1.0.0 3 | -------------------------------------------------------------------------------- /detection/requirements/multimodal.txt: -------------------------------------------------------------------------------- 1 | nltk 2 | pycocoevalcap 3 | transformers 4 | -------------------------------------------------------------------------------- /detection/requirements/optional.txt: -------------------------------------------------------------------------------- 1 | cityscapesscripts 2 | imagecorruptions 3 | scikit-learn 4 | -------------------------------------------------------------------------------- /detection/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements/readthedocs.txt -------------------------------------------------------------------------------- /detection/requirements/runtime.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements/runtime.txt -------------------------------------------------------------------------------- /detection/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements/tests.txt -------------------------------------------------------------------------------- /detection/requirements/tracking.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/requirements/tracking.txt -------------------------------------------------------------------------------- /detection/resources/coco_test_12510.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/resources/coco_test_12510.jpg -------------------------------------------------------------------------------- /detection/resources/corruptions_sev_3.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/resources/corruptions_sev_3.png -------------------------------------------------------------------------------- /detection/resources/data_pipeline.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/resources/data_pipeline.png -------------------------------------------------------------------------------- /detection/resources/loss_curve.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/resources/loss_curve.png -------------------------------------------------------------------------------- /detection/resources/mmdet-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/resources/mmdet-logo.png -------------------------------------------------------------------------------- /detection/resources/qq_group_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/resources/qq_group_qrcode.jpg -------------------------------------------------------------------------------- /detection/resources/zhihu_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/resources/zhihu_qrcode.jpg -------------------------------------------------------------------------------- /detection/scripts/train_ablate.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/scripts/train_ablate.sh -------------------------------------------------------------------------------- /detection/scripts/train_od.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/scripts/train_od.sh -------------------------------------------------------------------------------- /detection/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/setup.cfg -------------------------------------------------------------------------------- /detection/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/setup.py -------------------------------------------------------------------------------- /detection/tests/data/OpenImages/annotations/class-descriptions-boxable.csv: -------------------------------------------------------------------------------- 1 | /m/0cmf2,Airplane 2 | -------------------------------------------------------------------------------- /detection/tests/data/OpenImages/challenge2019/cls-label-description.csv: -------------------------------------------------------------------------------- 1 | /m/0cmf2,Airplane,86 2 | -------------------------------------------------------------------------------- /detection/tests/data/VOCdevkit/VOC2007/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /detection/tests/data/VOCdevkit/VOC2007/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /detection/tests/data/VOCdevkit/VOC2012/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /detection/tests/data/VOCdevkit/VOC2012/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /detection/tests/data/WIDERFace/WIDER_train/0--Parade/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/data/WIDERFace/train.txt: -------------------------------------------------------------------------------- 1 | 0_Parade_marchingband_1_5 2 | -------------------------------------------------------------------------------- /detection/tests/data/coco_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/coco_sample.json -------------------------------------------------------------------------------- /detection/tests/data/coco_wrong_format_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/coco_wrong_format_sample.json -------------------------------------------------------------------------------- /detection/tests/data/color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/color.jpg -------------------------------------------------------------------------------- /detection/tests/data/custom_dataset/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /detection/tests/data/custom_dataset/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /detection/tests/data/dsdl_det/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/dsdl_det/config.py -------------------------------------------------------------------------------- /detection/tests/data/dsdl_det/defs/class-domain.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/dsdl_det/defs/class-domain.yaml -------------------------------------------------------------------------------- /detection/tests/data/dsdl_det/set-train/train.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/dsdl_det/set-train/train.yaml -------------------------------------------------------------------------------- /detection/tests/data/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/gray.jpg -------------------------------------------------------------------------------- /detection/tests/data/mot_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/mot_sample.json -------------------------------------------------------------------------------- /detection/tests/data/vis_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/data/vis_sample.json -------------------------------------------------------------------------------- /detection/tests/explore_data.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/explore_data.ipynb -------------------------------------------------------------------------------- /detection/tests/test_apis/test_det_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_apis/test_det_inferencer.py -------------------------------------------------------------------------------- /detection/tests/test_apis/test_inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_apis/test_inference.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_cityscapes.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_coco.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_coco_panoptic.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_coco_panoptic.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_crowdhuman.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_crowdhuman.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_dsdldet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_dsdldet.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_lvis.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_objects365.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_objects365.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_openimages.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_openimages.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_pascal_voc.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_reid_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_reid_dataset.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_tta.py -------------------------------------------------------------------------------- /detection/tests/test_datasets/test_wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_datasets/test_wider_face.py -------------------------------------------------------------------------------- /detection/tests/test_engine/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/test_engine/test_optimizers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/test_evaluation/test_metrics/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/test_models/test_backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_backbones/utils.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_layers/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/test_models/test_layers/test_ema.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_layers/test_ema.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_losses/test_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_losses/test_loss.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_mot/test_oc_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_mot/test_oc_sort.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_mot/test_qdtrack.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_mot/test_qdtrack.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_mot/test_sort.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_mot/test_sort.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_necks/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_necks/test_necks.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_reid/test_gap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_reid/test_gap.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_task_modules/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/test_models/test_task_modules/test_samplers/test_pesudo_sampler.py: -------------------------------------------------------------------------------- 1 | # TODO: follow up 2 | -------------------------------------------------------------------------------- /detection/tests/test_models/test_tta/test_det_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_tta/test_det_tta.py -------------------------------------------------------------------------------- /detection/tests/test_models/test_utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_models/test_utils/test_misc.py -------------------------------------------------------------------------------- /detection/tests/test_structures/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/test_structures/test_bbox/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /detection/tests/test_structures/test_bbox/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_structures/test_bbox/utils.py -------------------------------------------------------------------------------- /detection/tests/test_utils/test_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_utils/test_benchmark.py -------------------------------------------------------------------------------- /detection/tests/test_utils/test_memory.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_utils/test_memory.py -------------------------------------------------------------------------------- /detection/tests/test_utils/test_replace_cfg_vals.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_utils/test_replace_cfg_vals.py -------------------------------------------------------------------------------- /detection/tests/test_utils/test_setup_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_utils/test_setup_env.py -------------------------------------------------------------------------------- /detection/tests/test_visualization/test_palette.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tests/test_visualization/test_palette.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/browse_dataset.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/confusion_matrix.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/confusion_matrix.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/get_params.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/get_params.ipynb -------------------------------------------------------------------------------- /detection/tools/analysis_tools/mot/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/mot/browse_dataset.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/optimize_anchors.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/optimize_anchors.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /detection/tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /detection/tools/dataset_converters/ade20k2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dataset_converters/ade20k2coco.py -------------------------------------------------------------------------------- /detection/tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /detection/tools/dataset_converters/coco_stuff164k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dataset_converters/coco_stuff164k.py -------------------------------------------------------------------------------- /detection/tools/dataset_converters/images2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dataset_converters/images2coco.py -------------------------------------------------------------------------------- /detection/tools/dataset_converters/mot2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dataset_converters/mot2coco.py -------------------------------------------------------------------------------- /detection/tools/dataset_converters/mot2reid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dataset_converters/mot2reid.py -------------------------------------------------------------------------------- /detection/tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /detection/tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /detection/tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /detection/tools/deployment/test_torchserver.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/deployment/test_torchserver.py -------------------------------------------------------------------------------- /detection/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dist_test.sh -------------------------------------------------------------------------------- /detection/tools/dist_test_tracking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dist_test_tracking.sh -------------------------------------------------------------------------------- /detection/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/dist_train.sh -------------------------------------------------------------------------------- /detection/tools/misc/download_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/misc/download_dataset.py -------------------------------------------------------------------------------- /detection/tools/misc/gen_coco_panoptic_test_info.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/misc/gen_coco_panoptic_test_info.py -------------------------------------------------------------------------------- /detection/tools/misc/get_crowdhuman_id_hw.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/misc/get_crowdhuman_id_hw.py -------------------------------------------------------------------------------- /detection/tools/misc/get_image_metas.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/misc/get_image_metas.py -------------------------------------------------------------------------------- /detection/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/misc/print_config.py -------------------------------------------------------------------------------- /detection/tools/misc/split_coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/misc/split_coco.py -------------------------------------------------------------------------------- /detection/tools/model_converters/glip_to_mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/model_converters/glip_to_mmdet.py -------------------------------------------------------------------------------- /detection/tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /detection/tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /detection/tools/model_converters/selfsup2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/model_converters/selfsup2mmdet.py -------------------------------------------------------------------------------- /detection/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/slurm_test.sh -------------------------------------------------------------------------------- /detection/tools/slurm_test_tracking.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/slurm_test_tracking.sh -------------------------------------------------------------------------------- /detection/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/slurm_train.sh -------------------------------------------------------------------------------- /detection/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/test.py -------------------------------------------------------------------------------- /detection/tools/test_components.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/test_components.ipynb -------------------------------------------------------------------------------- /detection/tools/test_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/test_tracking.py -------------------------------------------------------------------------------- /detection/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/detection/tools/train.py -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/environment.yml -------------------------------------------------------------------------------- /segmentation/CITATION.cff: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/CITATION.cff -------------------------------------------------------------------------------- /segmentation/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/LICENSE -------------------------------------------------------------------------------- /segmentation/MANIFEST.in: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/MANIFEST.in -------------------------------------------------------------------------------- /segmentation/README.md: -------------------------------------------------------------------------------- 1 | 2 | -------------------------------------------------------------------------------- /segmentation/configs/_base_/default_runtime.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/configs/_base_/default_runtime.py -------------------------------------------------------------------------------- /segmentation/dataset-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/dataset-index.yml -------------------------------------------------------------------------------- /segmentation/docker/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/docker/Dockerfile -------------------------------------------------------------------------------- /segmentation/docker/serve/Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/docker/serve/Dockerfile -------------------------------------------------------------------------------- /segmentation/docker/serve/config.properties: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/docker/serve/config.properties -------------------------------------------------------------------------------- /segmentation/docker/serve/entrypoint.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/docker/serve/entrypoint.sh -------------------------------------------------------------------------------- /segmentation/mmseg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/apis/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/apis/inference.py -------------------------------------------------------------------------------- /segmentation/mmseg/apis/mmseg_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/apis/mmseg_inferencer.py -------------------------------------------------------------------------------- /segmentation/mmseg/apis/remote_sense_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/apis/remote_sense_inferencer.py -------------------------------------------------------------------------------- /segmentation/mmseg/apis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/apis/utils.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/ade.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/ade.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/basesegdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/basesegdataset.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/bdd100k.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/bdd100k.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/chase_db1.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/cityscapes.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/coco_stuff.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/coco_stuff.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/dark_zurich.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/dark_zurich.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/decathlon.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/decathlon.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/drive.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/dsdl.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/dsdl.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/hrf.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/isaid.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/isprs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/isprs.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/levir.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/levir.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/lip.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/lip.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/loveda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/loveda.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/mapillary.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/mapillary.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/mfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/mfnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/my_basesegdataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/my_basesegdataset.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/night_driving.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/night_driving.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/nyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/nyu.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/pascal_context.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/pascal_context.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/potsdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/potsdam.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/pst900.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/pst900.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/refuge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/refuge.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/rgbt_sod.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/rgbt_sod.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/stare.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/synapse.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/transforms/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/transforms/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/transforms/formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/transforms/formatting.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/transforms/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/transforms/loading.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/transforms/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/transforms/transforms.py -------------------------------------------------------------------------------- /segmentation/mmseg/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/datasets/voc.py -------------------------------------------------------------------------------- /segmentation/mmseg/engine/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/engine/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/engine/hooks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/engine/hooks/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/engine/optimizers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/engine/optimizers/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/engine/schedulers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/engine/schedulers/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/evaluation/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/evaluation/metrics/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/evaluation/metrics/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/evaluation/metrics/iou_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/evaluation/metrics/iou_metric.py -------------------------------------------------------------------------------- /segmentation/mmseg/evaluation/metrics/sod_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/evaluation/metrics/sod_metric.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/beit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/beit.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/bisenetv1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/bisenetv1.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/bisenetv2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/bisenetv2.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/cgnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/cgnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/ddrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/ddrnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/erfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/erfnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/fast_scnn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/fast_scnn.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/hrnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/hrnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/icnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/icnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/mae.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/mae.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/mit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/mit.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/mobilenet_v2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/mobilenet_v2.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/mobilenet_v3.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/mobilenet_v3.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/mscan.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/mscan.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/pidnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/pidnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/resnest.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/resnet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/resnext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/resnext.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/stdc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/stdc.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/swin.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/swin.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/timm_backbone.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/timm_backbone.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/twins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/twins.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/unet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/unet.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/vit.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/vit.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/vit_rgbt_v15.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/vit_rgbt_v15.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/backbones/vpd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/backbones/vpd.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/builder.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/data_preprocessor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/data_preprocessor.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/ann_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/ann_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/apc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/apc_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/aspp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/aspp_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/atm_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/atm_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/cc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/cc_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/da_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/da_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/ddr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/ddr_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/dm_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/dm_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/dnl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/dnl_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/dpt_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/dpt_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/ema_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/ema_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/enc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/enc_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/fcn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/fcn_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/fpn_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/fpn_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/gc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/gc_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/ham_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/ham_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/isa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/isa_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/knet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/knet_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/nl_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/nl_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/ocr_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/ocr_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/pid_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/pid_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/point_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/point_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/psa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/psa_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/psp_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/psp_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/stdc_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/stdc_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/decode_heads/uper_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/decode_heads/uper_head.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/accuracy.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/accuracy.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/atm_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/atm_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/boundary_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/boundary_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/criterion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/criterion.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/dice_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/dice_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/focal_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/focal_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/kldiv_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/kldiv_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/lovasz_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/lovasz_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/misc.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/silog_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/silog_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/sod_iou_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/sod_iou_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/sod_ssim_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/sod_ssim_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/tversky_loss.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/tversky_loss.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/losses/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/losses/utils.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/necks/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/necks/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/necks/featurepyramid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/necks/featurepyramid.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/necks/fpn.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/necks/fpn.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/necks/ic_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/necks/ic_neck.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/necks/jpu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/necks/jpu.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/necks/mla_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/necks/mla_neck.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/necks/multilevel_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/necks/multilevel_neck.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/segmentors/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/segmentors/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/segmentors/base.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/segmentors/base.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/segmentors/seg_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/segmentors/seg_tta.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/basic_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/basic_block.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/embed.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/embed.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/encoding.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/inverted_residual.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/inverted_residual.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/make_divisible.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/make_divisible.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/ppm.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/ppm.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/res_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/res_layer.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/se_layer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/se_layer.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/shape_convert.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/shape_convert.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/up_conv_block.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/up_conv_block.py -------------------------------------------------------------------------------- /segmentation/mmseg/models/utils/wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/models/utils/wrappers.py -------------------------------------------------------------------------------- /segmentation/mmseg/registry/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/registry/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/registry/registry.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/registry/registry.py -------------------------------------------------------------------------------- /segmentation/mmseg/structures/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/structures/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/structures/sampler/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/structures/sampler/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/structures/sampler/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/structures/sampler/builder.py -------------------------------------------------------------------------------- /segmentation/mmseg/structures/seg_data_sample.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/structures/seg_data_sample.py -------------------------------------------------------------------------------- /segmentation/mmseg/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/utils/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/utils/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/utils/class_names.py -------------------------------------------------------------------------------- /segmentation/mmseg/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/utils/collect_env.py -------------------------------------------------------------------------------- /segmentation/mmseg/utils/io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/utils/io.py -------------------------------------------------------------------------------- /segmentation/mmseg/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/utils/misc.py -------------------------------------------------------------------------------- /segmentation/mmseg/utils/set_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/utils/set_env.py -------------------------------------------------------------------------------- /segmentation/mmseg/utils/typing_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/utils/typing_utils.py -------------------------------------------------------------------------------- /segmentation/mmseg/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/version.py -------------------------------------------------------------------------------- /segmentation/mmseg/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/visualization/__init__.py -------------------------------------------------------------------------------- /segmentation/mmseg/visualization/local_visualizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/mmseg/visualization/local_visualizer.py -------------------------------------------------------------------------------- /segmentation/model-index.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/model-index.yml -------------------------------------------------------------------------------- /segmentation/projects/Adabins/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/Adabins/README.md -------------------------------------------------------------------------------- /segmentation/projects/Adabins/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/Adabins/backbones/__init__.py -------------------------------------------------------------------------------- /segmentation/projects/CAT-Seg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/CAT-Seg/README.md -------------------------------------------------------------------------------- /segmentation/projects/CAT-Seg/cat_seg/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/CAT-Seg/cat_seg/__init__.py -------------------------------------------------------------------------------- /segmentation/projects/CAT-Seg/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/CAT-Seg/utils/__init__.py -------------------------------------------------------------------------------- /segmentation/projects/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/README.md -------------------------------------------------------------------------------- /segmentation/projects/XDecoder/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/XDecoder/README.md -------------------------------------------------------------------------------- /segmentation/projects/bdd100k_dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/bdd100k_dataset/README.md -------------------------------------------------------------------------------- /segmentation/projects/example_project/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/example_project/README.md -------------------------------------------------------------------------------- /segmentation/projects/faq.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/faq.md -------------------------------------------------------------------------------- /segmentation/projects/hssn/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/hssn/README.md -------------------------------------------------------------------------------- /segmentation/projects/hssn/decode_head/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/hssn/decode_head/__init__.py -------------------------------------------------------------------------------- /segmentation/projects/hssn/losses/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/hssn/losses/__init__.py -------------------------------------------------------------------------------- /segmentation/projects/isnet/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/isnet/README.md -------------------------------------------------------------------------------- /segmentation/projects/isnet/decode_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/isnet/decode_heads/__init__.py -------------------------------------------------------------------------------- /segmentation/projects/mapillary_dataset/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/mapillary_dataset/README.md -------------------------------------------------------------------------------- /segmentation/projects/pp_mobileseg/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/pp_mobileseg/README.md -------------------------------------------------------------------------------- /segmentation/projects/pp_mobileseg/inference_onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/pp_mobileseg/inference_onnx.py -------------------------------------------------------------------------------- /segmentation/projects/sam_inference_demo/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/sam_inference_demo/README.md -------------------------------------------------------------------------------- /segmentation/projects/van/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/van/README.md -------------------------------------------------------------------------------- /segmentation/projects/van/backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/van/backbones/__init__.py -------------------------------------------------------------------------------- /segmentation/projects/van/backbones/van.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/projects/van/backbones/van.py -------------------------------------------------------------------------------- /segmentation/requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/requirements.txt -------------------------------------------------------------------------------- /segmentation/requirements/albu.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/requirements/albu.txt -------------------------------------------------------------------------------- /segmentation/requirements/docs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/requirements/docs.txt -------------------------------------------------------------------------------- /segmentation/requirements/mminstall.txt: -------------------------------------------------------------------------------- 1 | mmcv>=2.0.0rc4 2 | mmengine>=0.5.0,<1.0.0 3 | -------------------------------------------------------------------------------- /segmentation/requirements/optional.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/requirements/optional.txt -------------------------------------------------------------------------------- /segmentation/requirements/readthedocs.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/requirements/readthedocs.txt -------------------------------------------------------------------------------- /segmentation/requirements/runtime.txt: -------------------------------------------------------------------------------- 1 | matplotlib 2 | numpy 3 | packaging 4 | prettytable 5 | scipy 6 | -------------------------------------------------------------------------------- /segmentation/requirements/tests.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/requirements/tests.txt -------------------------------------------------------------------------------- /segmentation/resources/3dogs.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/3dogs.jpg -------------------------------------------------------------------------------- /segmentation/resources/3dogs_mask.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/3dogs_mask.png -------------------------------------------------------------------------------- /segmentation/resources/encoder_decoder_dataflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/encoder_decoder_dataflow.png -------------------------------------------------------------------------------- /segmentation/resources/miaomiao_qrcode.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/miaomiao_qrcode.jpg -------------------------------------------------------------------------------- /segmentation/resources/mmseg-logo.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/mmseg-logo.png -------------------------------------------------------------------------------- /segmentation/resources/seg_demo.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/seg_demo.gif -------------------------------------------------------------------------------- /segmentation/resources/test_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/test_step.png -------------------------------------------------------------------------------- /segmentation/resources/train_step.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/resources/train_step.png -------------------------------------------------------------------------------- /segmentation/scripts/train_seg.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/scripts/train_seg.sh -------------------------------------------------------------------------------- /segmentation/scripts/train_sod.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/scripts/train_sod.sh -------------------------------------------------------------------------------- /segmentation/setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/setup.cfg -------------------------------------------------------------------------------- /segmentation/setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/setup.py -------------------------------------------------------------------------------- /segmentation/tests/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/__init__.py -------------------------------------------------------------------------------- /segmentation/tests/data/biomedical.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/biomedical.nii.gz -------------------------------------------------------------------------------- /segmentation/tests/data/biomedical.npy: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/biomedical.npy -------------------------------------------------------------------------------- /segmentation/tests/data/biomedical.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/biomedical.pkl -------------------------------------------------------------------------------- /segmentation/tests/data/biomedical_ann.nii.gz: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/biomedical_ann.nii.gz -------------------------------------------------------------------------------- /segmentation/tests/data/color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/color.jpg -------------------------------------------------------------------------------- /segmentation/tests/data/dataset.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/dataset.json -------------------------------------------------------------------------------- /segmentation/tests/data/dsdl_seg/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/dsdl_seg/config.py -------------------------------------------------------------------------------- /segmentation/tests/data/dsdl_seg/defs/class-dom.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/dsdl_seg/defs/class-dom.yaml -------------------------------------------------------------------------------- /segmentation/tests/data/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/gray.jpg -------------------------------------------------------------------------------- /segmentation/tests/data/pseudo_dataset/splits/val.txt: -------------------------------------------------------------------------------- 1 | 00004 2 | -------------------------------------------------------------------------------- /segmentation/tests/data/pseudo_isaid_dataset/ann_dir/P0000_0_896_1024_1920_instance_color_RGB.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /segmentation/tests/data/pseudo_isaid_dataset/ann_dir/P0000_0_896_1536_2432_instance_color_RGB.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /segmentation/tests/data/pseudo_isaid_dataset/img_dir/P0000_0_896_1024_1920.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /segmentation/tests/data/pseudo_isaid_dataset/img_dir/P0000_0_896_1536_2432.png: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /segmentation/tests/data/pseudo_isaid_dataset/splits/train.txt: -------------------------------------------------------------------------------- 1 | P0000_0_896_1536_2432 2 | -------------------------------------------------------------------------------- /segmentation/tests/data/pseudo_isaid_dataset/splits/val.txt: -------------------------------------------------------------------------------- 1 | P0000_0_896_1024_1920 2 | -------------------------------------------------------------------------------- /segmentation/tests/data/seg.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/data/seg.png -------------------------------------------------------------------------------- /segmentation/tests/test_apis/test_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_apis/test_inferencer.py -------------------------------------------------------------------------------- /segmentation/tests/test_apis/test_rs_inferencer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_apis/test_rs_inferencer.py -------------------------------------------------------------------------------- /segmentation/tests/test_apis/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_apis/utils.py -------------------------------------------------------------------------------- /segmentation/tests/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_config.py -------------------------------------------------------------------------------- /segmentation/tests/test_datasets/test_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_datasets/test_dataset.py -------------------------------------------------------------------------------- /segmentation/tests/test_datasets/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_datasets/test_formatting.py -------------------------------------------------------------------------------- /segmentation/tests/test_datasets/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_datasets/test_loading.py -------------------------------------------------------------------------------- /segmentation/tests/test_datasets/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_datasets/test_transform.py -------------------------------------------------------------------------------- /segmentation/tests/test_datasets/test_tta.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_datasets/test_tta.py -------------------------------------------------------------------------------- /segmentation/tests/test_digit_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_digit_version.py -------------------------------------------------------------------------------- /segmentation/tests/test_engine/test_optimizer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_engine/test_optimizer.py -------------------------------------------------------------------------------- /segmentation/tests/test_models/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_models/__init__.py -------------------------------------------------------------------------------- /segmentation/tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /segmentation/tests/test_models/test_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_models/test_heads/utils.py -------------------------------------------------------------------------------- /segmentation/tests/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_sampler.py -------------------------------------------------------------------------------- /segmentation/tests/test_utils/test_io.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_utils/test_io.py -------------------------------------------------------------------------------- /segmentation/tests/test_utils/test_set_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tests/test_utils/test_set_env.py -------------------------------------------------------------------------------- /segmentation/tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /segmentation/tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /segmentation/tools/analysis_tools/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/analysis_tools/browse_dataset.py -------------------------------------------------------------------------------- /segmentation/tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/chase_db1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/chase_db1.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/drive.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/drive.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/hrf.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/hrf.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/isaid.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/isaid.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/levircd.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/levircd.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/loveda.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/loveda.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/mfnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/mfnet.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/nyu.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/nyu.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/potsdam.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/potsdam.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/pst900.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/refuge.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/refuge.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/stare.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/stare.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/synapse.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/synapse.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/vaihingen.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/vaihingen.py -------------------------------------------------------------------------------- /segmentation/tools/dataset_converters/voc_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dataset_converters/voc_aug.py -------------------------------------------------------------------------------- /segmentation/tools/deployment/pytorch2torchscript.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/deployment/pytorch2torchscript.py -------------------------------------------------------------------------------- /segmentation/tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dist_test.sh -------------------------------------------------------------------------------- /segmentation/tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/dist_train.sh -------------------------------------------------------------------------------- /segmentation/tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /segmentation/tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/misc/print_config.py -------------------------------------------------------------------------------- /segmentation/tools/misc/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/misc/publish_model.py -------------------------------------------------------------------------------- /segmentation/tools/model_converters/beit2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/model_converters/beit2mmseg.py -------------------------------------------------------------------------------- /segmentation/tools/model_converters/mit2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/model_converters/mit2mmseg.py -------------------------------------------------------------------------------- /segmentation/tools/model_converters/stdc2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/model_converters/stdc2mmseg.py -------------------------------------------------------------------------------- /segmentation/tools/model_converters/swin2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/model_converters/swin2mmseg.py -------------------------------------------------------------------------------- /segmentation/tools/model_converters/twins2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/model_converters/twins2mmseg.py -------------------------------------------------------------------------------- /segmentation/tools/model_converters/vit2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/model_converters/vit2mmseg.py -------------------------------------------------------------------------------- /segmentation/tools/model_converters/vitjax2mmseg.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/model_converters/vitjax2mmseg.py -------------------------------------------------------------------------------- /segmentation/tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/slurm_test.sh -------------------------------------------------------------------------------- /segmentation/tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/slurm_train.sh -------------------------------------------------------------------------------- /segmentation/tools/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/test.py -------------------------------------------------------------------------------- /segmentation/tools/torchserve/mmseg2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/torchserve/mmseg2torchserve.py -------------------------------------------------------------------------------- /segmentation/tools/torchserve/mmseg_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/torchserve/mmseg_handler.py -------------------------------------------------------------------------------- /segmentation/tools/torchserve/test_torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/torchserve/test_torchserve.py -------------------------------------------------------------------------------- /segmentation/tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/PoTsui99/UniRGB-IR/HEAD/segmentation/tools/train.py --------------------------------------------------------------------------------