├── LICENSE ├── README.md ├── cvmart_competition ├── dock.py ├── make_dataset.py ├── openvino_cpp_code │ ├── cmakelist.txt │ ├── cov.txt │ ├── docker.txt │ ├── ji.cpp │ ├── my_detector.cpp │ └── my_detector.h ├── rat.yaml ├── read_data.py ├── save_data.py ├── train.py └── yolov5l.yaml ├── demo ├── CMakeLists.txt ├── detector.cpp ├── detector.h ├── main.cpp └── res │ ├── bus.jpg │ ├── yolov5s.bin │ └── yolov5s.xml └── img ├── net.png ├── output.png └── result.png /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/README.md -------------------------------------------------------------------------------- /cvmart_competition/dock.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/dock.py -------------------------------------------------------------------------------- /cvmart_competition/make_dataset.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/make_dataset.py -------------------------------------------------------------------------------- /cvmart_competition/openvino_cpp_code/cmakelist.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/openvino_cpp_code/cmakelist.txt -------------------------------------------------------------------------------- /cvmart_competition/openvino_cpp_code/cov.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/openvino_cpp_code/cov.txt -------------------------------------------------------------------------------- /cvmart_competition/openvino_cpp_code/docker.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/openvino_cpp_code/docker.txt -------------------------------------------------------------------------------- /cvmart_competition/openvino_cpp_code/ji.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/openvino_cpp_code/ji.cpp -------------------------------------------------------------------------------- /cvmart_competition/openvino_cpp_code/my_detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/openvino_cpp_code/my_detector.cpp -------------------------------------------------------------------------------- /cvmart_competition/openvino_cpp_code/my_detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/openvino_cpp_code/my_detector.h -------------------------------------------------------------------------------- /cvmart_competition/rat.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/rat.yaml -------------------------------------------------------------------------------- /cvmart_competition/read_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/read_data.py -------------------------------------------------------------------------------- /cvmart_competition/save_data.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/save_data.py -------------------------------------------------------------------------------- /cvmart_competition/train.py: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/train.py -------------------------------------------------------------------------------- /cvmart_competition/yolov5l.yaml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/cvmart_competition/yolov5l.yaml -------------------------------------------------------------------------------- /demo/CMakeLists.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/demo/CMakeLists.txt -------------------------------------------------------------------------------- /demo/detector.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/demo/detector.cpp -------------------------------------------------------------------------------- /demo/detector.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/demo/detector.h -------------------------------------------------------------------------------- /demo/main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/demo/main.cpp -------------------------------------------------------------------------------- /demo/res/bus.jpg: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/demo/res/bus.jpg -------------------------------------------------------------------------------- /demo/res/yolov5s.bin: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/demo/res/yolov5s.bin -------------------------------------------------------------------------------- /demo/res/yolov5s.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/demo/res/yolov5s.xml -------------------------------------------------------------------------------- /img/net.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/img/net.png -------------------------------------------------------------------------------- /img/output.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/img/output.png -------------------------------------------------------------------------------- /img/result.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/fb029ed/yolov5_cpp_openvino/HEAD/img/result.png --------------------------------------------------------------------------------