├── .gitattributes ├── .gitignore ├── .idea ├── .gitignore ├── ONNX-YOLOv7-Object-Detection.iml ├── inspectionProfiles │ ├── Project_Default.xml │ └── profiles_settings.xml └── modules.xml ├── LICENSE ├── README.md ├── comparison_with_yolov5_v6.py ├── doc └── img │ ├── detected_objects.jpg │ ├── yolov7_video.gif │ ├── yolov7_yolov5_video.gif │ └── yolov7_yolov6_video.gif ├── image_object_detection.py ├── models └── .gitkeep ├── requirements.txt ├── video_object_detection.py ├── webcam_object_detection.py └── yolov7 ├── YOLOv7.py ├── __init__.py └── utils.py /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/.gitignore -------------------------------------------------------------------------------- /.idea/.gitignore: -------------------------------------------------------------------------------- 1 | # Default ignored files 2 | /shelf/ 3 | /workspace.xml 4 | -------------------------------------------------------------------------------- /.idea/ONNX-YOLOv7-Object-Detection.iml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/.idea/ONNX-YOLOv7-Object-Detection.iml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/Project_Default.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/.idea/inspectionProfiles/Project_Default.xml -------------------------------------------------------------------------------- /.idea/inspectionProfiles/profiles_settings.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/.idea/inspectionProfiles/profiles_settings.xml -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/.idea/modules.xml -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/README.md -------------------------------------------------------------------------------- /comparison_with_yolov5_v6.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/comparison_with_yolov5_v6.py -------------------------------------------------------------------------------- /doc/img/detected_objects.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/doc/img/detected_objects.jpg -------------------------------------------------------------------------------- /doc/img/yolov7_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/doc/img/yolov7_video.gif -------------------------------------------------------------------------------- /doc/img/yolov7_yolov5_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/doc/img/yolov7_yolov5_video.gif -------------------------------------------------------------------------------- /doc/img/yolov7_yolov6_video.gif: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/doc/img/yolov7_yolov6_video.gif -------------------------------------------------------------------------------- /image_object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/image_object_detection.py -------------------------------------------------------------------------------- /models/.gitkeep: -------------------------------------------------------------------------------- 1 | -------------------------------------------------------------------------------- /requirements.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/requirements.txt -------------------------------------------------------------------------------- /video_object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/video_object_detection.py -------------------------------------------------------------------------------- /webcam_object_detection.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/webcam_object_detection.py -------------------------------------------------------------------------------- /yolov7/YOLOv7.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/yolov7/YOLOv7.py -------------------------------------------------------------------------------- /yolov7/__init__.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/yolov7/__init__.py -------------------------------------------------------------------------------- /yolov7/utils.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/ibaiGorordo/ONNX-YOLOv7-Object-Detection/HEAD/yolov7/utils.py --------------------------------------------------------------------------------