├── .gitignore ├── LICENSE ├── README.md ├── code ├── training_yolov5.ipynb └── utils │ ├── __init__.py │ ├── inverting_polarity.py │ └── vid_to_frames.py ├── docs └── hardware_problem_description.pdf ├── images └── README │ ├── labels.jpg │ ├── labels_correlogram.jpg │ ├── output_indivudal_cpu.jpg │ ├── total_cpu_utilization.jpg │ ├── total_gpu_utilization.jpg │ ├── total_ram_utilization.jpg │ └── workflow.png └── inference_vids └── inference_custom_data.gif /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/.gitignore -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/README.md -------------------------------------------------------------------------------- /code/training_yolov5.ipynb: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/code/training_yolov5.ipynb -------------------------------------------------------------------------------- /code/utils/__init__.py: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /code/utils/inverting_polarity.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/code/utils/inverting_polarity.py -------------------------------------------------------------------------------- /code/utils/vid_to_frames.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/code/utils/vid_to_frames.py -------------------------------------------------------------------------------- /docs/hardware_problem_description.pdf: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/docs/hardware_problem_description.pdf -------------------------------------------------------------------------------- /images/README/labels.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/images/README/labels.jpg -------------------------------------------------------------------------------- /images/README/labels_correlogram.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/images/README/labels_correlogram.jpg -------------------------------------------------------------------------------- /images/README/output_indivudal_cpu.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/images/README/output_indivudal_cpu.jpg -------------------------------------------------------------------------------- /images/README/total_cpu_utilization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/images/README/total_cpu_utilization.jpg -------------------------------------------------------------------------------- /images/README/total_gpu_utilization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/images/README/total_gpu_utilization.jpg -------------------------------------------------------------------------------- /images/README/total_ram_utilization.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/images/README/total_ram_utilization.jpg -------------------------------------------------------------------------------- /images/README/workflow.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/images/README/workflow.png -------------------------------------------------------------------------------- /inference_vids/inference_custom_data.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Prabhdeep1999/uav-detection/HEAD/inference_vids/inference_custom_data.gif --------------------------------------------------------------------------------