├── 1_Data_Collection └── data_collection.py ├── 2_Data_Annotation ├── class_list.txt ├── run.py └── train_test_split.py ├── 3_Experiment_Tracking_with_W&B ├── upload_dataset.py └── visualize_dataset.py ├── 4_Custom_Train_YOLOv8 ├── object_detection.py ├── train_yolov8m.py └── train_yolov8n.py ├── 5_Custom_Track_YOLOv8 ├── BoTSORT_track.py └── ByteTrack_track.py ├── Assets ├── Apples.jpg ├── Bird.jpg ├── DogVid.mp4 ├── Elephants_Crossing.mp4 ├── Grassland_Elephants.mp4 └── Lion.jpg ├── Exercises ├── 1_Classification.py ├── 2_Detection.py └── 3_Segmentation.py ├── LICENSE ├── README.md ├── Results ├── predict │ └── Bird.jpg ├── predict2 │ └── DogVid.mp4 └── predict3 │ └── Apples.jpg └── wildlife_dataset.yaml /1_Data_Collection/data_collection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/1_Data_Collection/data_collection.py -------------------------------------------------------------------------------- /2_Data_Annotation/class_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/2_Data_Annotation/class_list.txt -------------------------------------------------------------------------------- /2_Data_Annotation/run.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/2_Data_Annotation/run.py -------------------------------------------------------------------------------- /2_Data_Annotation/train_test_split.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/2_Data_Annotation/train_test_split.py -------------------------------------------------------------------------------- /3_Experiment_Tracking_with_W&B/upload_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/3_Experiment_Tracking_with_W&B/upload_dataset.py -------------------------------------------------------------------------------- /3_Experiment_Tracking_with_W&B/visualize_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/3_Experiment_Tracking_with_W&B/visualize_dataset.py -------------------------------------------------------------------------------- /4_Custom_Train_YOLOv8/object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/4_Custom_Train_YOLOv8/object_detection.py -------------------------------------------------------------------------------- /4_Custom_Train_YOLOv8/train_yolov8m.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/4_Custom_Train_YOLOv8/train_yolov8m.py -------------------------------------------------------------------------------- /4_Custom_Train_YOLOv8/train_yolov8n.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/4_Custom_Train_YOLOv8/train_yolov8n.py -------------------------------------------------------------------------------- /5_Custom_Track_YOLOv8/BoTSORT_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/5_Custom_Track_YOLOv8/BoTSORT_track.py -------------------------------------------------------------------------------- /5_Custom_Track_YOLOv8/ByteTrack_track.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/5_Custom_Track_YOLOv8/ByteTrack_track.py -------------------------------------------------------------------------------- /Assets/Apples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Assets/Apples.jpg -------------------------------------------------------------------------------- /Assets/Bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Assets/Bird.jpg -------------------------------------------------------------------------------- /Assets/DogVid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Assets/DogVid.mp4 -------------------------------------------------------------------------------- /Assets/Elephants_Crossing.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Assets/Elephants_Crossing.mp4 -------------------------------------------------------------------------------- /Assets/Grassland_Elephants.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Assets/Grassland_Elephants.mp4 -------------------------------------------------------------------------------- /Assets/Lion.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Assets/Lion.jpg -------------------------------------------------------------------------------- /Exercises/1_Classification.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Exercises/1_Classification.py -------------------------------------------------------------------------------- /Exercises/2_Detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Exercises/2_Detection.py -------------------------------------------------------------------------------- /Exercises/3_Segmentation.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Exercises/3_Segmentation.py -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/README.md -------------------------------------------------------------------------------- /Results/predict/Bird.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Results/predict/Bird.jpg -------------------------------------------------------------------------------- /Results/predict2/DogVid.mp4: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Results/predict2/DogVid.mp4 -------------------------------------------------------------------------------- /Results/predict3/Apples.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/Results/predict3/Apples.jpg -------------------------------------------------------------------------------- /wildlife_dataset.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/Mukilan-Krishnakumar/Custom_YOLOv8_Object_Track/HEAD/wildlife_dataset.yaml --------------------------------------------------------------------------------