├── .dockerignore ├── .github └── workflows │ └── main.yml ├── .gitignore ├── Dockerfile ├── LICENSE ├── README.md ├── favicon-yolo.ico ├── model_list.txt ├── requirements.txt ├── yolov8-detection-tracking-segmentation-pose.py └── yolov8-docker.yml /.dockerignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/.dockerignore -------------------------------------------------------------------------------- /.github/workflows/main.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/.github/workflows/main.yml -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/.gitignore -------------------------------------------------------------------------------- /Dockerfile: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/Dockerfile -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/README.md -------------------------------------------------------------------------------- /favicon-yolo.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/favicon-yolo.ico -------------------------------------------------------------------------------- /model_list.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/model_list.txt -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/requirements.txt -------------------------------------------------------------------------------- /yolov8-detection-tracking-segmentation-pose.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/yolov8-detection-tracking-segmentation-pose.py -------------------------------------------------------------------------------- /yolov8-docker.yml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/OMEGAMAX10/YOLOv8-Object-Detection-Tracking-Image-Segmentation-Pose-Estimation/HEAD/yolov8-docker.yml --------------------------------------------------------------------------------