├── .gitignore ├── LICENSE ├── README.md ├── annotations ├── FL-Drones-Dataset │ ├── Video_001.txt │ ├── Video_011.txt │ ├── Video_012.txt │ ├── Video_018.txt │ ├── Video_019.txt │ ├── Video_029.txt │ ├── Video_037.txt │ ├── Video_046.txt │ ├── Video_047.txt │ ├── Video_048.txt │ ├── Video_049.txt │ ├── Video_053.txt │ ├── Video_055.txt │ └── Video_056.txt └── NPS-Drones-Dataset │ ├── Clip_001.txt │ ├── Clip_002.txt │ ├── Clip_003.txt │ ├── Clip_004.txt │ ├── Clip_005.txt │ ├── Clip_006.txt │ ├── Clip_007.txt │ ├── Clip_008.txt │ ├── Clip_009.txt │ ├── Clip_010.txt │ ├── Clip_011.txt │ ├── Clip_012.txt │ ├── Clip_013.txt │ ├── Clip_014.txt │ ├── Clip_015.txt │ ├── Clip_016.txt │ ├── Clip_017.txt │ ├── Clip_018.txt │ ├── Clip_019.txt │ ├── Clip_020.txt │ ├── Clip_021.txt │ ├── Clip_022.txt │ ├── Clip_023.txt │ ├── Clip_024.txt │ ├── Clip_025.txt │ ├── Clip_026.txt │ ├── Clip_027.txt │ ├── Clip_028.txt │ ├── Clip_029.txt │ ├── Clip_030.txt │ ├── Clip_031.txt │ ├── Clip_032.txt │ ├── Clip_033.txt │ ├── Clip_034.txt │ ├── Clip_035.txt │ ├── Clip_036.txt │ ├── Clip_037.txt │ ├── Clip_038.txt │ ├── Clip_039.txt │ ├── Clip_040.txt │ ├── Clip_041.txt │ ├── Clip_042.txt │ ├── Clip_043.txt │ ├── Clip_044.txt │ ├── Clip_045.txt │ ├── Clip_046.txt │ ├── Clip_047.txt │ ├── Clip_048.txt │ ├── Clip_049.txt │ └── Clip_050.txt ├── environment.yml ├── test_model ├── libs │ ├── box_utils.py │ ├── funcs.py │ └── i3d_funcs.py ├── spatial │ ├── checkpoint_paths.py │ ├── config.py │ └── test_and_score.py └── temporal │ ├── checkpoint_paths.py │ ├── config.py │ ├── results_generation.py │ └── test.py ├── tools ├── add_3d_box_information_to_2d_box_information.py ├── binary_mask_dilation.py ├── boxes_list_to_patch_information_json.py ├── correlational_tracker │ ├── multi_tracker.py │ ├── multi_tracker_forward_backward.py │ ├── multi_tracker_forward_backward_with_i3d.py │ ├── multi_tracker_with_merge_on_fly.py │ ├── track.py │ └── tracking_lib.py ├── crf │ ├── IoU_test.py │ └── crf_on_labels.py ├── cuboids │ ├── multi_scale_volumes_with_tracking_and_stabilization_using_masks.py │ └── volumes_with_tracking_of_generated_boxes_with_stabilization.py ├── generate_annotation_files.py ├── generate_annotations_and_scores.py ├── image_crops │ ├── funts.py │ ├── generate_crops_of_images_by_dividing.py │ ├── merge_foldered_crops.py │ └── merge_funcs.py ├── merge_detection_mask_patches.py ├── motion_stablization │ ├── motion_stabilization_library.py │ └── stabalize_motion.py ├── nms │ ├── nms.py │ └── nms_generated_boxes.py ├── object-detection-metrics │ ├── .gitignore │ ├── LICENSE │ ├── Makefile │ ├── README.md │ ├── _init_paths.py │ ├── aux_images │ │ ├── 11-pointInterpolation.png │ │ ├── interpolated_precision-AUC_v2.png │ │ ├── interpolated_precision_v2.png │ │ ├── iou.png │ │ ├── precision_recall_example_1_v2.png │ │ ├── samples_1_v2.png │ │ ├── table_1_v2.png │ │ └── table_2_v2.png │ ├── lib │ │ ├── BoundingBox.py │ │ ├── BoundingBoxes.py │ │ ├── Evaluator.py │ │ ├── __init__.py │ │ └── utils.py │ ├── my_evaluation_metric_code │ │ ├── _init_paths.py │ │ └── evaluation_code.py │ ├── pascalvoc.py │ ├── results │ │ └── results.txt │ └── samples │ │ ├── sample_1 │ │ ├── README.md │ │ ├── _init_paths.py │ │ ├── images │ │ │ ├── 000001.jpg │ │ │ ├── 000002.jpg │ │ │ ├── 000003.jpg │ │ │ ├── detections │ │ │ │ ├── 000001.png │ │ │ │ ├── 000002.png │ │ │ │ └── 000003.png │ │ │ └── groundtruths │ │ │ │ ├── 000001.jpg │ │ │ │ ├── 000002.jpg │ │ │ │ └── 000003.jpg │ │ └── sample_1.py │ │ └── sample_2 │ │ ├── README.md │ │ ├── _init_paths.py │ │ ├── detections │ │ ├── 00001.txt │ │ ├── 00002.txt │ │ ├── 00003.txt │ │ ├── 00004.txt │ │ ├── 00005.txt │ │ ├── 00006.txt │ │ └── 00007.txt │ │ ├── groundtruths │ │ ├── 00001.txt │ │ ├── 00002.txt │ │ ├── 00003.txt │ │ ├── 00004.txt │ │ ├── 00005.txt │ │ ├── 00006.txt │ │ └── 00007.txt │ │ └── sample_2.py ├── optical_flow_motion_boundaries.py ├── optical_flow_motion_boundaries_with_stabilization.py ├── remove_boxes_not_available_in_reference_masks.py ├── remove_motion_boundary_edges.py ├── remove_small_big_boxes.py ├── video_to_frames_and_masks.py └── video_tubes │ └── remove_noisy_false_positives_by_tracking.py ├── train ├── spatial │ ├── config.py │ └── train_model.py └── temporal │ ├── config.py │ └── train_model.py └── utils ├── data_funcs.py └── functions.py /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/README.md -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_001.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_011.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_012.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_018.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_019.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_029.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_037.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_046.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_047.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_048.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_049.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_053.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_053.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_055.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_055.txt -------------------------------------------------------------------------------- /annotations/FL-Drones-Dataset/Video_056.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/FL-Drones-Dataset/Video_056.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_001.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_002.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_003.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_004.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_005.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_006.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_007.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_008.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_008.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_009.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_009.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_010.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_010.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_011.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_011.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_012.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_012.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_013.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_013.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_014.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_014.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_015.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_015.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_016.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_016.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_017.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_017.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_018.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_018.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_019.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_019.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_020.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_020.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_021.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_021.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_022.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_022.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_023.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_023.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_024.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_024.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_025.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_025.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_026.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_026.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_027.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_027.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_028.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_028.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_029.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_029.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_030.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_030.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_031.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_031.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_032.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_032.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_033.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_033.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_034.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_034.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_035.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_035.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_036.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_036.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_037.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_037.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_038.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_038.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_039.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_039.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_040.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_040.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_041.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_041.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_042.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_042.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_043.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_043.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_044.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_044.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_045.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_045.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_046.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_046.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_047.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_047.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_048.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_048.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_049.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_049.txt -------------------------------------------------------------------------------- /annotations/NPS-Drones-Dataset/Clip_050.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/annotations/NPS-Drones-Dataset/Clip_050.txt -------------------------------------------------------------------------------- /environment.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/environment.yml -------------------------------------------------------------------------------- /test_model/libs/box_utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/libs/box_utils.py -------------------------------------------------------------------------------- /test_model/libs/funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/libs/funcs.py -------------------------------------------------------------------------------- /test_model/libs/i3d_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/libs/i3d_funcs.py -------------------------------------------------------------------------------- /test_model/spatial/checkpoint_paths.py: -------------------------------------------------------------------------------- 1 | checkpoints = [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /test_model/spatial/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/spatial/config.py -------------------------------------------------------------------------------- /test_model/spatial/test_and_score.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/spatial/test_and_score.py -------------------------------------------------------------------------------- /test_model/temporal/checkpoint_paths.py: -------------------------------------------------------------------------------- 1 | checkpoints = [ 2 | 3 | ] 4 | -------------------------------------------------------------------------------- /test_model/temporal/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/temporal/config.py -------------------------------------------------------------------------------- /test_model/temporal/results_generation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/temporal/results_generation.py -------------------------------------------------------------------------------- /test_model/temporal/test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/test_model/temporal/test.py -------------------------------------------------------------------------------- /tools/add_3d_box_information_to_2d_box_information.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/add_3d_box_information_to_2d_box_information.py -------------------------------------------------------------------------------- /tools/binary_mask_dilation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/binary_mask_dilation.py -------------------------------------------------------------------------------- /tools/boxes_list_to_patch_information_json.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/boxes_list_to_patch_information_json.py -------------------------------------------------------------------------------- /tools/correlational_tracker/multi_tracker.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/correlational_tracker/multi_tracker.py -------------------------------------------------------------------------------- /tools/correlational_tracker/multi_tracker_forward_backward.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/correlational_tracker/multi_tracker_forward_backward.py -------------------------------------------------------------------------------- /tools/correlational_tracker/multi_tracker_forward_backward_with_i3d.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/correlational_tracker/multi_tracker_forward_backward_with_i3d.py -------------------------------------------------------------------------------- /tools/correlational_tracker/multi_tracker_with_merge_on_fly.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/correlational_tracker/multi_tracker_with_merge_on_fly.py -------------------------------------------------------------------------------- /tools/correlational_tracker/track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/correlational_tracker/track.py -------------------------------------------------------------------------------- /tools/correlational_tracker/tracking_lib.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/correlational_tracker/tracking_lib.py -------------------------------------------------------------------------------- /tools/crf/IoU_test.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/crf/IoU_test.py -------------------------------------------------------------------------------- /tools/crf/crf_on_labels.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/crf/crf_on_labels.py -------------------------------------------------------------------------------- /tools/cuboids/multi_scale_volumes_with_tracking_and_stabilization_using_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/cuboids/multi_scale_volumes_with_tracking_and_stabilization_using_masks.py -------------------------------------------------------------------------------- /tools/cuboids/volumes_with_tracking_of_generated_boxes_with_stabilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/cuboids/volumes_with_tracking_of_generated_boxes_with_stabilization.py -------------------------------------------------------------------------------- /tools/generate_annotation_files.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/generate_annotation_files.py -------------------------------------------------------------------------------- /tools/generate_annotations_and_scores.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/generate_annotations_and_scores.py -------------------------------------------------------------------------------- /tools/image_crops/funts.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/image_crops/funts.py -------------------------------------------------------------------------------- /tools/image_crops/generate_crops_of_images_by_dividing.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/image_crops/generate_crops_of_images_by_dividing.py -------------------------------------------------------------------------------- /tools/image_crops/merge_foldered_crops.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/image_crops/merge_foldered_crops.py -------------------------------------------------------------------------------- /tools/image_crops/merge_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/image_crops/merge_funcs.py -------------------------------------------------------------------------------- /tools/merge_detection_mask_patches.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/merge_detection_mask_patches.py -------------------------------------------------------------------------------- /tools/motion_stablization/motion_stabilization_library.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/motion_stablization/motion_stabilization_library.py -------------------------------------------------------------------------------- /tools/motion_stablization/stabalize_motion.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/motion_stablization/stabalize_motion.py -------------------------------------------------------------------------------- /tools/nms/nms.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/nms/nms.py -------------------------------------------------------------------------------- /tools/nms/nms_generated_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/nms/nms_generated_boxes.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/.gitignore -------------------------------------------------------------------------------- /tools/object-detection-metrics/LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/LICENSE -------------------------------------------------------------------------------- /tools/object-detection-metrics/Makefile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/Makefile -------------------------------------------------------------------------------- /tools/object-detection-metrics/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/README.md -------------------------------------------------------------------------------- /tools/object-detection-metrics/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/_init_paths.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/11-pointInterpolation.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/11-pointInterpolation.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/interpolated_precision-AUC_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/interpolated_precision-AUC_v2.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/interpolated_precision_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/interpolated_precision_v2.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/iou.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/iou.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/precision_recall_example_1_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/precision_recall_example_1_v2.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/samples_1_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/samples_1_v2.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/table_1_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/table_1_v2.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/aux_images/table_2_v2.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/aux_images/table_2_v2.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/lib/BoundingBox.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/lib/BoundingBox.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/lib/BoundingBoxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/lib/BoundingBoxes.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/lib/Evaluator.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/lib/Evaluator.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/lib/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/lib/__init__.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/lib/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/lib/utils.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/my_evaluation_metric_code/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/my_evaluation_metric_code/_init_paths.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/my_evaluation_metric_code/evaluation_code.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/my_evaluation_metric_code/evaluation_code.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/pascalvoc.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/pascalvoc.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/results/results.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/results/results.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/README.md -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/_init_paths.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/000001.jpg -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/000002.jpg -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/000003.jpg -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/detections/000001.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/detections/000001.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/detections/000002.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/detections/000002.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/detections/000003.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/detections/000003.png -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/groundtruths/000001.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/groundtruths/000001.jpg -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/groundtruths/000002.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/groundtruths/000002.jpg -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/images/groundtruths/000003.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/images/groundtruths/000003.jpg -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_1/sample_1.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_1/sample_1.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/README.md -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/_init_paths.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/_init_paths.py -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/detections/00001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/detections/00001.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/detections/00002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/detections/00002.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/detections/00003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/detections/00003.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/detections/00004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/detections/00004.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/detections/00005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/detections/00005.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/detections/00006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/detections/00006.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/detections/00007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/detections/00007.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/groundtruths/00001.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/groundtruths/00001.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/groundtruths/00002.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/groundtruths/00002.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/groundtruths/00003.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/groundtruths/00003.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/groundtruths/00004.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/groundtruths/00004.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/groundtruths/00005.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/groundtruths/00005.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/groundtruths/00006.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/groundtruths/00006.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/groundtruths/00007.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/groundtruths/00007.txt -------------------------------------------------------------------------------- /tools/object-detection-metrics/samples/sample_2/sample_2.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/object-detection-metrics/samples/sample_2/sample_2.py -------------------------------------------------------------------------------- /tools/optical_flow_motion_boundaries.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/optical_flow_motion_boundaries.py -------------------------------------------------------------------------------- /tools/optical_flow_motion_boundaries_with_stabilization.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/optical_flow_motion_boundaries_with_stabilization.py -------------------------------------------------------------------------------- /tools/remove_boxes_not_available_in_reference_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/remove_boxes_not_available_in_reference_masks.py -------------------------------------------------------------------------------- /tools/remove_motion_boundary_edges.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/remove_motion_boundary_edges.py -------------------------------------------------------------------------------- /tools/remove_small_big_boxes.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/remove_small_big_boxes.py -------------------------------------------------------------------------------- /tools/video_to_frames_and_masks.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/video_to_frames_and_masks.py -------------------------------------------------------------------------------- /tools/video_tubes/remove_noisy_false_positives_by_tracking.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/tools/video_tubes/remove_noisy_false_positives_by_tracking.py -------------------------------------------------------------------------------- /train/spatial/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/train/spatial/config.py -------------------------------------------------------------------------------- /train/spatial/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/train/spatial/train_model.py -------------------------------------------------------------------------------- /train/temporal/config.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/train/temporal/config.py -------------------------------------------------------------------------------- /train/temporal/train_model.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/train/temporal/train_model.py -------------------------------------------------------------------------------- /utils/data_funcs.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/utils/data_funcs.py -------------------------------------------------------------------------------- /utils/functions.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/mwaseema/Drone-Detection/HEAD/utils/functions.py --------------------------------------------------------------------------------