├── LICENSE ├── README.md ├── config └── newdata.py ├── jpg2ann.py ├── mmdet-new ├── __init__.py ├── __pycache__ │ ├── __init__.cpython-37.pyc │ └── version.cpython-37.pyc ├── apis │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── inference.cpython-37.pyc │ │ ├── test.cpython-37.pyc │ │ └── train.cpython-37.pyc │ ├── inference.py │ ├── test.py │ └── train.py ├── core-new │ ├── __init__.py │ ├── __pycache__ │ │ └── __init__.cpython-37.pyc │ ├── anchor │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── anchor_generator.cpython-37.pyc │ │ │ ├── builder.cpython-37.pyc │ │ │ ├── point_generator.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── anchor_generator.py │ │ ├── builder.py │ │ ├── point_generator.py │ │ └── utils.py │ ├── bbox │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── builder.cpython-37.pyc │ │ │ ├── demodata.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ ├── assigners │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── approx_max_iou_assigner.cpython-37.pyc │ │ │ │ ├── assign_result.cpython-37.pyc │ │ │ │ ├── atss_assigner.cpython-37.pyc │ │ │ │ ├── base_assigner.cpython-37.pyc │ │ │ │ ├── center_region_assigner.cpython-37.pyc │ │ │ │ ├── grid_assigner.cpython-37.pyc │ │ │ │ ├── hungarian_assigner.cpython-37.pyc │ │ │ │ ├── max_iou_assigner.cpython-37.pyc │ │ │ │ ├── point_assigner.cpython-37.pyc │ │ │ │ └── region_assigner.cpython-37.pyc │ │ │ ├── approx_max_iou_assigner.py │ │ │ ├── assign_result.py │ │ │ ├── atss_assigner.py │ │ │ ├── base_assigner.py │ │ │ ├── center_region_assigner.py │ │ │ ├── grid_assigner.py │ │ │ ├── hungarian_assigner.py │ │ │ ├── max_iou_assigner.py │ │ │ ├── point_assigner.py │ │ │ └── region_assigner.py │ │ ├── builder.py │ │ ├── coder │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── base_bbox_coder.cpython-37.pyc │ │ │ │ ├── bucketing_bbox_coder.cpython-37.pyc │ │ │ │ ├── delta_xywh_bbox_coder.cpython-37.pyc │ │ │ │ ├── legacy_delta_xywh_bbox_coder.cpython-37.pyc │ │ │ │ ├── pseudo_bbox_coder.cpython-37.pyc │ │ │ │ ├── tblr_bbox_coder.cpython-37.pyc │ │ │ │ └── yolo_bbox_coder.cpython-37.pyc │ │ │ ├── base_bbox_coder.py │ │ │ ├── bucketing_bbox_coder.py │ │ │ ├── delta_xywh_bbox_coder.py │ │ │ ├── legacy_delta_xywh_bbox_coder.py │ │ │ ├── pseudo_bbox_coder.py │ │ │ ├── tblr_bbox_coder.py │ │ │ └── yolo_bbox_coder.py │ │ ├── demodata.py │ │ ├── iou_calculators │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── builder.cpython-37.pyc │ │ │ │ └── iou2d_calculator.cpython-37.pyc │ │ │ ├── builder.py │ │ │ └── iou2d_calculator.py │ │ ├── match_costs │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── builder.cpython-37.pyc │ │ │ │ └── match_cost.cpython-37.pyc │ │ │ ├── builder.py │ │ │ └── match_cost.py │ │ ├── samplers │ │ │ ├── __init__.py │ │ │ ├── __pycache__ │ │ │ │ ├── __init__.cpython-37.pyc │ │ │ │ ├── base_sampler.cpython-37.pyc │ │ │ │ ├── combined_sampler.cpython-37.pyc │ │ │ │ ├── instance_balanced_pos_sampler.cpython-37.pyc │ │ │ │ ├── iou_balanced_neg_sampler.cpython-37.pyc │ │ │ │ ├── ohem_sampler.cpython-37.pyc │ │ │ │ ├── pseudo_sampler.cpython-37.pyc │ │ │ │ ├── random_sampler.cpython-37.pyc │ │ │ │ ├── sampling_result.cpython-37.pyc │ │ │ │ └── score_hlr_sampler.cpython-37.pyc │ │ │ ├── base_sampler.py │ │ │ ├── combined_sampler.py │ │ │ ├── instance_balanced_pos_sampler.py │ │ │ ├── iou_balanced_neg_sampler.py │ │ │ ├── ohem_sampler.py │ │ │ ├── pseudo_sampler.py │ │ │ ├── random_sampler.py │ │ │ ├── sampling_result.py │ │ │ └── score_hlr_sampler.py │ │ └── transforms.py │ ├── evaluation │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bbox_overlaps.cpython-37.pyc │ │ │ ├── class_names.cpython-37.pyc │ │ │ ├── eval_hooks.cpython-37.pyc │ │ │ ├── mean_ap.cpython-37.pyc │ │ │ └── recall.cpython-37.pyc │ │ ├── bbox_overlaps.py │ │ ├── class_names.py │ │ ├── eval_hooks.py │ │ ├── mean_ap.py │ │ └── recall.py │ ├── export │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ └── pytorch2onnx.cpython-37.pyc │ │ └── pytorch2onnx.py │ ├── mask │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── mask_target.cpython-37.pyc │ │ │ ├── structures.cpython-37.pyc │ │ │ └── utils.cpython-37.pyc │ │ ├── mask_target.py │ │ ├── structures.py │ │ └── utils.py │ ├── post_processing │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── bbox_nms.cpython-37.pyc │ │ │ └── merge_augs.cpython-37.pyc │ │ ├── bbox_nms.py │ │ └── merge_augs.py │ ├── utils │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── dist_utils.cpython-37.pyc │ │ │ └── misc.cpython-37.pyc │ │ ├── dist_utils.py │ │ └── misc.py │ └── visualization │ │ ├── __init__.py │ │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ └── image.cpython-37.pyc │ │ └── image.py ├── datasets │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── builder.cpython-37.pyc │ │ ├── cityscapes.cpython-37.pyc │ │ ├── coco.cpython-37.pyc │ │ ├── custom.cpython-37.pyc │ │ ├── dataset_wrappers.cpython-37.pyc │ │ ├── deepfashion.cpython-37.pyc │ │ ├── lvis.cpython-37.pyc │ │ ├── utils.cpython-37.pyc │ │ ├── voc.cpython-37.pyc │ │ ├── wider_face.cpython-37.pyc │ │ └── xml_style.cpython-37.pyc │ ├── builder.py │ ├── cityscapes.py │ ├── coco.py │ ├── custom.py │ ├── dataset_wrappers.py │ ├── deepfashion.py │ ├── lvis.py │ ├── pipelines │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── auto_augment.cpython-37.pyc │ │ │ ├── compose.cpython-37.pyc │ │ │ ├── formating.cpython-37.pyc │ │ │ ├── instaboost.cpython-37.pyc │ │ │ ├── loading.cpython-37.pyc │ │ │ ├── test_time_aug.cpython-37.pyc │ │ │ └── transforms.cpython-37.pyc │ │ ├── auto_augment.py │ │ ├── compose.py │ │ ├── formating.py │ │ ├── instaboost.py │ │ ├── loading.py │ │ ├── test_time_aug.py │ │ └── transforms.py │ ├── samplers │ │ ├── __init__.py │ │ ├── __pycache__ │ │ │ ├── __init__.cpython-37.pyc │ │ │ ├── distributed_sampler.cpython-37.pyc │ │ │ └── group_sampler.cpython-37.pyc │ │ ├── distributed_sampler.py │ │ └── group_sampler.py │ ├── utils.py │ ├── voc.py │ ├── wider_face.py │ └── xml_style.py ├── utils │ ├── __init__.py │ ├── __pycache__ │ │ ├── __init__.cpython-37.pyc │ │ ├── collect_env.cpython-37.pyc │ │ ├── contextmanagers.cpython-37.pyc │ │ ├── logger.cpython-37.pyc │ │ ├── util_mixins.cpython-37.pyc │ │ └── util_random.cpython-37.pyc │ ├── collect_env.py │ ├── contextmanagers.py │ ├── logger.py │ ├── profiling.py │ ├── util_mixins.py │ └── util_random.py └── version.py ├── requirements.txt ├── run.sh ├── setup.cfg ├── setup.py ├── tests ├── data │ ├── 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 │ ├── coco_sample.json │ ├── color.jpg │ └── gray.jpg ├── test_data │ ├── test_datasets │ │ ├── test_coco_dataset.py │ │ ├── test_common.py │ │ ├── test_custom_dataset.py │ │ ├── test_dataset_wrapper.py │ │ └── test_xml_dataset.py │ ├── test_pipelines │ │ ├── test_formatting.py │ │ ├── test_loading.py │ │ ├── test_sampler.py │ │ └── test_transform │ │ │ ├── test_img_augment.py │ │ │ ├── test_models_aug_test.py │ │ │ ├── test_rotate.py │ │ │ ├── test_shear.py │ │ │ ├── test_transform.py │ │ │ └── test_translate.py │ └── test_utils.py ├── test_metrics │ ├── test_box_overlap.py │ └── test_losses.py ├── test_models │ ├── test_backbones │ │ ├── __init__.py │ │ ├── test_hourglass.py │ │ ├── test_regnet.py │ │ ├── test_renext.py │ │ ├── test_res2net.py │ │ ├── test_resnest.py │ │ ├── test_resnet.py │ │ ├── test_trident_resnet.py │ │ └── utils.py │ ├── test_dense_heads │ │ ├── test_anchor_head.py │ │ ├── test_corner_head.py │ │ ├── test_fcos_head.py │ │ ├── test_fsaf_head.py │ │ ├── test_ga_anchor_head.py │ │ ├── test_ld_head.py │ │ ├── test_paa_head.py │ │ ├── test_pisa_head.py │ │ ├── test_sabl_retina_head.py │ │ ├── test_transformer_head.py │ │ ├── test_vfnet_head.py │ │ └── test_yolact_head.py │ ├── test_forward.py │ ├── test_necks.py │ ├── test_roi_heads │ │ ├── __init__.py │ │ ├── test_bbox_head.py │ │ ├── test_mask_head.py │ │ ├── test_roi_extractor.py │ │ ├── test_sabl_bbox_head.py │ │ └── utils.py │ └── test_utils │ │ ├── test_position_encoding.py │ │ └── test_transformer.py ├── test_onnx │ ├── __init__.py │ ├── data │ │ ├── retina_head_get_bboxes.pkl │ │ ├── yolov3_head_get_bboxes.pkl │ │ └── yolov3_neck.pkl │ ├── test_head.py │ ├── test_neck.py │ └── utils.py ├── test_runtime │ ├── async_benchmark.py │ ├── test_async.py │ ├── test_config.py │ ├── test_eval_hook.py │ └── test_fp16.py └── test_utils │ ├── test_anchor.py │ ├── test_assigner.py │ ├── test_coder.py │ ├── test_masks.py │ ├── test_misc.py │ ├── test_version.py │ └── test_visualization.py ├── tools ├── analysis_tools │ ├── analyze_logs.py │ ├── analyze_results.py │ ├── benchmark.py │ ├── coco_error_analysis.py │ ├── eval_metric.py │ ├── get_flops.py │ ├── robustness_eval.py │ └── test_robustness.py ├── dataset_converters │ ├── cityscapes.py │ └── pascal_voc.py ├── deployment │ ├── mmdet2torchserve.py │ ├── mmdet_handler.py │ ├── onnx2tensorrt.py │ └── pytorch2onnx.py ├── dist_test.sh ├── dist_train.sh ├── main_test.py ├── misc │ ├── browse_dataset.py │ └── print_config.py ├── model_converters │ ├── detectron2pytorch.py │ ├── publish_model.py │ ├── regnet2mmdet.py │ └── upgrade_model_version.py ├── slurm_test.sh ├── slurm_train.sh └── train.py └── xml2coco.py /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/README.md -------------------------------------------------------------------------------- /config/newdata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/config/newdata.py -------------------------------------------------------------------------------- /jpg2ann.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/jpg2ann.py -------------------------------------------------------------------------------- /mmdet-new/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/__init__.py -------------------------------------------------------------------------------- /mmdet-new/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/__pycache__/version.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/__pycache__/version.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/apis/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/__init__.py -------------------------------------------------------------------------------- /mmdet-new/apis/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/apis/__pycache__/inference.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/__pycache__/inference.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/apis/__pycache__/test.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/__pycache__/test.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/apis/__pycache__/train.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/__pycache__/train.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/apis/inference.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/inference.py -------------------------------------------------------------------------------- /mmdet-new/apis/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/test.py -------------------------------------------------------------------------------- /mmdet-new/apis/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/apis/train.py -------------------------------------------------------------------------------- /mmdet-new/core-new/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/__pycache__/anchor_generator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/__pycache__/anchor_generator.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/__pycache__/builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/__pycache__/builder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/__pycache__/point_generator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/__pycache__/point_generator.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/anchor_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/anchor_generator.py -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/builder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/point_generator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/point_generator.py -------------------------------------------------------------------------------- /mmdet-new/core-new/anchor/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/anchor/utils.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/__pycache__/builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/__pycache__/builder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/__pycache__/demodata.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/__pycache__/demodata.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/approx_max_iou_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/approx_max_iou_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/assign_result.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/assign_result.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/atss_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/atss_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/base_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/base_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/center_region_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/center_region_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/grid_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/grid_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/hungarian_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/hungarian_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/max_iou_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/max_iou_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/point_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/point_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/__pycache__/region_assigner.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/__pycache__/region_assigner.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/approx_max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/approx_max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/assign_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/assign_result.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/atss_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/atss_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/base_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/base_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/center_region_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/center_region_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/grid_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/grid_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/hungarian_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/hungarian_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/max_iou_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/max_iou_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/point_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/point_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/assigners/region_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/assigners/region_assigner.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/builder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/base_bbox_coder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/base_bbox_coder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/bucketing_bbox_coder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/bucketing_bbox_coder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/delta_xywh_bbox_coder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/delta_xywh_bbox_coder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/legacy_delta_xywh_bbox_coder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/legacy_delta_xywh_bbox_coder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/pseudo_bbox_coder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/pseudo_bbox_coder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/tblr_bbox_coder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/tblr_bbox_coder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/__pycache__/yolo_bbox_coder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/__pycache__/yolo_bbox_coder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/base_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/base_bbox_coder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/bucketing_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/bucketing_bbox_coder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/delta_xywh_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/delta_xywh_bbox_coder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/legacy_delta_xywh_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/legacy_delta_xywh_bbox_coder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/pseudo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/pseudo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/tblr_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/tblr_bbox_coder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/coder/yolo_bbox_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/coder/yolo_bbox_coder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/demodata.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/demodata.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/iou_calculators/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/iou_calculators/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/iou_calculators/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/iou_calculators/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/iou_calculators/__pycache__/builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/iou_calculators/__pycache__/builder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/iou_calculators/__pycache__/iou2d_calculator.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/iou_calculators/__pycache__/iou2d_calculator.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/iou_calculators/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/iou_calculators/builder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/iou_calculators/iou2d_calculator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/iou_calculators/iou2d_calculator.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/match_costs/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/match_costs/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/match_costs/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/match_costs/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/match_costs/__pycache__/builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/match_costs/__pycache__/builder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/match_costs/__pycache__/match_cost.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/match_costs/__pycache__/match_cost.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/match_costs/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/match_costs/builder.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/match_costs/match_cost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/match_costs/match_cost.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/base_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/base_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/combined_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/combined_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/instance_balanced_pos_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/instance_balanced_pos_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/iou_balanced_neg_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/iou_balanced_neg_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/ohem_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/ohem_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/pseudo_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/pseudo_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/random_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/random_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/sampling_result.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/sampling_result.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/__pycache__/score_hlr_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/__pycache__/score_hlr_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/base_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/base_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/combined_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/combined_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/instance_balanced_pos_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/instance_balanced_pos_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/iou_balanced_neg_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/iou_balanced_neg_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/ohem_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/ohem_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/pseudo_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/pseudo_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/random_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/random_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/sampling_result.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/sampling_result.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/samplers/score_hlr_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/samplers/score_hlr_sampler.py -------------------------------------------------------------------------------- /mmdet-new/core-new/bbox/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/bbox/transforms.py -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/__pycache__/bbox_overlaps.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/__pycache__/bbox_overlaps.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/__pycache__/class_names.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/__pycache__/class_names.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/__pycache__/eval_hooks.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/__pycache__/eval_hooks.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/__pycache__/mean_ap.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/__pycache__/mean_ap.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/__pycache__/recall.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/__pycache__/recall.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/bbox_overlaps.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/bbox_overlaps.py -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/class_names.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/class_names.py -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/eval_hooks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/eval_hooks.py -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/mean_ap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/mean_ap.py -------------------------------------------------------------------------------- /mmdet-new/core-new/evaluation/recall.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/evaluation/recall.py -------------------------------------------------------------------------------- /mmdet-new/core-new/export/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/export/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/export/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/export/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/export/__pycache__/pytorch2onnx.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/export/__pycache__/pytorch2onnx.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/export/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/export/pytorch2onnx.py -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/__pycache__/mask_target.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/__pycache__/mask_target.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/__pycache__/structures.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/__pycache__/structures.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/mask_target.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/mask_target.py -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/structures.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/structures.py -------------------------------------------------------------------------------- /mmdet-new/core-new/mask/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/mask/utils.py -------------------------------------------------------------------------------- /mmdet-new/core-new/post_processing/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/post_processing/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/post_processing/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/post_processing/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/post_processing/__pycache__/bbox_nms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/post_processing/__pycache__/bbox_nms.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/post_processing/__pycache__/merge_augs.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/post_processing/__pycache__/merge_augs.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/post_processing/bbox_nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/post_processing/bbox_nms.py -------------------------------------------------------------------------------- /mmdet-new/core-new/post_processing/merge_augs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/post_processing/merge_augs.py -------------------------------------------------------------------------------- /mmdet-new/core-new/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/utils/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/utils/__pycache__/dist_utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/utils/__pycache__/dist_utils.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/utils/__pycache__/misc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/utils/__pycache__/misc.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/utils/dist_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/utils/dist_utils.py -------------------------------------------------------------------------------- /mmdet-new/core-new/utils/misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/utils/misc.py -------------------------------------------------------------------------------- /mmdet-new/core-new/visualization/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/visualization/__init__.py -------------------------------------------------------------------------------- /mmdet-new/core-new/visualization/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/visualization/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/visualization/__pycache__/image.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/visualization/__pycache__/image.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/core-new/visualization/image.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/core-new/visualization/image.py -------------------------------------------------------------------------------- /mmdet-new/datasets/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__init__.py -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/builder.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/builder.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/cityscapes.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/cityscapes.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/coco.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/coco.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/custom.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/custom.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/dataset_wrappers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/dataset_wrappers.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/deepfashion.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/deepfashion.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/lvis.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/lvis.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/utils.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/utils.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/voc.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/voc.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/wider_face.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/wider_face.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/__pycache__/xml_style.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/__pycache__/xml_style.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/builder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/builder.py -------------------------------------------------------------------------------- /mmdet-new/datasets/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/cityscapes.py -------------------------------------------------------------------------------- /mmdet-new/datasets/coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/coco.py -------------------------------------------------------------------------------- /mmdet-new/datasets/custom.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/custom.py -------------------------------------------------------------------------------- /mmdet-new/datasets/dataset_wrappers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/dataset_wrappers.py -------------------------------------------------------------------------------- /mmdet-new/datasets/deepfashion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/deepfashion.py -------------------------------------------------------------------------------- /mmdet-new/datasets/lvis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/lvis.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__init__.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/auto_augment.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/auto_augment.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/compose.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/compose.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/formating.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/formating.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/instaboost.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/instaboost.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/loading.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/loading.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/test_time_aug.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/test_time_aug.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/__pycache__/transforms.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/__pycache__/transforms.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/auto_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/auto_augment.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/compose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/compose.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/formating.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/formating.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/instaboost.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/instaboost.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/loading.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/test_time_aug.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/test_time_aug.py -------------------------------------------------------------------------------- /mmdet-new/datasets/pipelines/transforms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/pipelines/transforms.py -------------------------------------------------------------------------------- /mmdet-new/datasets/samplers/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/samplers/__init__.py -------------------------------------------------------------------------------- /mmdet-new/datasets/samplers/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/samplers/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/samplers/__pycache__/distributed_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/samplers/__pycache__/distributed_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/samplers/__pycache__/group_sampler.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/samplers/__pycache__/group_sampler.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/datasets/samplers/distributed_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/samplers/distributed_sampler.py -------------------------------------------------------------------------------- /mmdet-new/datasets/samplers/group_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/samplers/group_sampler.py -------------------------------------------------------------------------------- /mmdet-new/datasets/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/utils.py -------------------------------------------------------------------------------- /mmdet-new/datasets/voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/voc.py -------------------------------------------------------------------------------- /mmdet-new/datasets/wider_face.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/wider_face.py -------------------------------------------------------------------------------- /mmdet-new/datasets/xml_style.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/datasets/xml_style.py -------------------------------------------------------------------------------- /mmdet-new/utils/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/__init__.py -------------------------------------------------------------------------------- /mmdet-new/utils/__pycache__/__init__.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/__pycache__/__init__.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/utils/__pycache__/collect_env.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/__pycache__/collect_env.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/utils/__pycache__/contextmanagers.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/__pycache__/contextmanagers.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/utils/__pycache__/logger.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/__pycache__/logger.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/utils/__pycache__/util_mixins.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/__pycache__/util_mixins.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/utils/__pycache__/util_random.cpython-37.pyc: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/__pycache__/util_random.cpython-37.pyc -------------------------------------------------------------------------------- /mmdet-new/utils/collect_env.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/collect_env.py -------------------------------------------------------------------------------- /mmdet-new/utils/contextmanagers.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/contextmanagers.py -------------------------------------------------------------------------------- /mmdet-new/utils/logger.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/logger.py -------------------------------------------------------------------------------- /mmdet-new/utils/profiling.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/profiling.py -------------------------------------------------------------------------------- /mmdet-new/utils/util_mixins.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/util_mixins.py -------------------------------------------------------------------------------- /mmdet-new/utils/util_random.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/utils/util_random.py -------------------------------------------------------------------------------- /mmdet-new/version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/mmdet-new/version.py -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/requirements.txt -------------------------------------------------------------------------------- /run.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/run.sh -------------------------------------------------------------------------------- /setup.cfg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/setup.cfg -------------------------------------------------------------------------------- /setup.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/setup.py -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2007/Annotations/000001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/data/VOCdevkit/VOC2007/Annotations/000001.xml -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2007/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2007/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2007/JPEGImages/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/data/VOCdevkit/VOC2007/JPEGImages/000001.jpg -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2012/Annotations/000001.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/data/VOCdevkit/VOC2012/Annotations/000001.xml -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2012/ImageSets/Main/test.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2012/ImageSets/Main/trainval.txt: -------------------------------------------------------------------------------- 1 | 000001 2 | -------------------------------------------------------------------------------- /tests/data/VOCdevkit/VOC2012/JPEGImages/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/data/VOCdevkit/VOC2012/JPEGImages/000001.jpg -------------------------------------------------------------------------------- /tests/data/coco_sample.json: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/data/coco_sample.json -------------------------------------------------------------------------------- /tests/data/color.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/data/color.jpg -------------------------------------------------------------------------------- /tests/data/gray.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/data/gray.jpg -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_coco_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_datasets/test_coco_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_common.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_datasets/test_common.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_custom_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_datasets/test_custom_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_dataset_wrapper.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_datasets/test_dataset_wrapper.py -------------------------------------------------------------------------------- /tests/test_data/test_datasets/test_xml_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_datasets/test_xml_dataset.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_formatting.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_formatting.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_loading.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_loading.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_sampler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_sampler.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_transform/test_img_augment.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_transform/test_img_augment.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_transform/test_models_aug_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_transform/test_models_aug_test.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_transform/test_rotate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_transform/test_rotate.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_transform/test_shear.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_transform/test_shear.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_transform/test_transform.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_transform/test_transform.py -------------------------------------------------------------------------------- /tests/test_data/test_pipelines/test_transform/test_translate.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_pipelines/test_transform/test_translate.py -------------------------------------------------------------------------------- /tests/test_data/test_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_data/test_utils.py -------------------------------------------------------------------------------- /tests/test_metrics/test_box_overlap.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_metrics/test_box_overlap.py -------------------------------------------------------------------------------- /tests/test_metrics/test_losses.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_metrics/test_losses.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/__init__.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_hourglass.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/test_hourglass.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_regnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/test_regnet.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_renext.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/test_renext.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_res2net.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/test_res2net.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_resnest.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/test_resnest.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/test_resnet.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/test_trident_resnet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/test_trident_resnet.py -------------------------------------------------------------------------------- /tests/test_models/test_backbones/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_backbones/utils.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_anchor_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_corner_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_corner_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_fcos_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_fcos_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_fsaf_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_fsaf_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_ga_anchor_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_ga_anchor_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_ld_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_ld_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_paa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_paa_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_pisa_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_pisa_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_sabl_retina_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_sabl_retina_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_transformer_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_transformer_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_vfnet_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_vfnet_head.py -------------------------------------------------------------------------------- /tests/test_models/test_dense_heads/test_yolact_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_dense_heads/test_yolact_head.py -------------------------------------------------------------------------------- /tests/test_models/test_forward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_forward.py -------------------------------------------------------------------------------- /tests/test_models/test_necks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_necks.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_roi_heads/__init__.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_roi_heads/test_bbox_head.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_mask_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_roi_heads/test_mask_head.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_roi_extractor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_roi_heads/test_roi_extractor.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/test_sabl_bbox_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_roi_heads/test_sabl_bbox_head.py -------------------------------------------------------------------------------- /tests/test_models/test_roi_heads/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_roi_heads/utils.py -------------------------------------------------------------------------------- /tests/test_models/test_utils/test_position_encoding.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_utils/test_position_encoding.py -------------------------------------------------------------------------------- /tests/test_models/test_utils/test_transformer.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_models/test_utils/test_transformer.py -------------------------------------------------------------------------------- /tests/test_onnx/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_onnx/__init__.py -------------------------------------------------------------------------------- /tests/test_onnx/data/retina_head_get_bboxes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_onnx/data/retina_head_get_bboxes.pkl -------------------------------------------------------------------------------- /tests/test_onnx/data/yolov3_head_get_bboxes.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_onnx/data/yolov3_head_get_bboxes.pkl -------------------------------------------------------------------------------- /tests/test_onnx/data/yolov3_neck.pkl: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_onnx/data/yolov3_neck.pkl -------------------------------------------------------------------------------- /tests/test_onnx/test_head.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_onnx/test_head.py -------------------------------------------------------------------------------- /tests/test_onnx/test_neck.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_onnx/test_neck.py -------------------------------------------------------------------------------- /tests/test_onnx/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_onnx/utils.py -------------------------------------------------------------------------------- /tests/test_runtime/async_benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_runtime/async_benchmark.py -------------------------------------------------------------------------------- /tests/test_runtime/test_async.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_runtime/test_async.py -------------------------------------------------------------------------------- /tests/test_runtime/test_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_runtime/test_config.py -------------------------------------------------------------------------------- /tests/test_runtime/test_eval_hook.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_runtime/test_eval_hook.py -------------------------------------------------------------------------------- /tests/test_runtime/test_fp16.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_runtime/test_fp16.py -------------------------------------------------------------------------------- /tests/test_utils/test_anchor.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_utils/test_anchor.py -------------------------------------------------------------------------------- /tests/test_utils/test_assigner.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_utils/test_assigner.py -------------------------------------------------------------------------------- /tests/test_utils/test_coder.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_utils/test_coder.py -------------------------------------------------------------------------------- /tests/test_utils/test_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_utils/test_masks.py -------------------------------------------------------------------------------- /tests/test_utils/test_misc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_utils/test_misc.py -------------------------------------------------------------------------------- /tests/test_utils/test_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_utils/test_version.py -------------------------------------------------------------------------------- /tests/test_utils/test_visualization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tests/test_utils/test_visualization.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_logs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/analyze_logs.py -------------------------------------------------------------------------------- /tools/analysis_tools/analyze_results.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/analyze_results.py -------------------------------------------------------------------------------- /tools/analysis_tools/benchmark.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/benchmark.py -------------------------------------------------------------------------------- /tools/analysis_tools/coco_error_analysis.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/coco_error_analysis.py -------------------------------------------------------------------------------- /tools/analysis_tools/eval_metric.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/eval_metric.py -------------------------------------------------------------------------------- /tools/analysis_tools/get_flops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/get_flops.py -------------------------------------------------------------------------------- /tools/analysis_tools/robustness_eval.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/robustness_eval.py -------------------------------------------------------------------------------- /tools/analysis_tools/test_robustness.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/analysis_tools/test_robustness.py -------------------------------------------------------------------------------- /tools/dataset_converters/cityscapes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/dataset_converters/cityscapes.py -------------------------------------------------------------------------------- /tools/dataset_converters/pascal_voc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/dataset_converters/pascal_voc.py -------------------------------------------------------------------------------- /tools/deployment/mmdet2torchserve.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/deployment/mmdet2torchserve.py -------------------------------------------------------------------------------- /tools/deployment/mmdet_handler.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/deployment/mmdet_handler.py -------------------------------------------------------------------------------- /tools/deployment/onnx2tensorrt.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/deployment/onnx2tensorrt.py -------------------------------------------------------------------------------- /tools/deployment/pytorch2onnx.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/deployment/pytorch2onnx.py -------------------------------------------------------------------------------- /tools/dist_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/dist_test.sh -------------------------------------------------------------------------------- /tools/dist_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/dist_train.sh -------------------------------------------------------------------------------- /tools/main_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/main_test.py -------------------------------------------------------------------------------- /tools/misc/browse_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/misc/browse_dataset.py -------------------------------------------------------------------------------- /tools/misc/print_config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/misc/print_config.py -------------------------------------------------------------------------------- /tools/model_converters/detectron2pytorch.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/model_converters/detectron2pytorch.py -------------------------------------------------------------------------------- /tools/model_converters/publish_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/model_converters/publish_model.py -------------------------------------------------------------------------------- /tools/model_converters/regnet2mmdet.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/model_converters/regnet2mmdet.py -------------------------------------------------------------------------------- /tools/model_converters/upgrade_model_version.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/model_converters/upgrade_model_version.py -------------------------------------------------------------------------------- /tools/slurm_test.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/slurm_test.sh -------------------------------------------------------------------------------- /tools/slurm_train.sh: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/slurm_train.sh -------------------------------------------------------------------------------- /tools/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/tools/train.py -------------------------------------------------------------------------------- /xml2coco.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Boese0601/2021-National-Underwater-Robotics-Vision-Optics/HEAD/xml2coco.py --------------------------------------------------------------------------------