├── DeepLabV3.cpp ├── DeepLabV3.h ├── DeepLabV3_Openvino_Deploy.cpp ├── DeepLabV3_Openvino_Deploy.h ├── FastRcnn_Openvino_Deploy.cpp ├── FastRcnn_Openvino_Deploy.h ├── FasterRcnn.cpp ├── FasterRcnn.h ├── MaskRcnn_Seg_Onnx.cpp ├── MaskRcnn_Seg_Onnx.h ├── MaskRcnn_Seg_Openvino_Deploy.cpp ├── MaskRcnn_Seg_Openvino_Deploy.h ├── ModelHandler.cpp ├── ModelHandler.h ├── Resnet18_Openvino_Deploy.cpp ├── Resnet18_Openvino_Deploy.h ├── Unet.cpp ├── Unet.h ├── Unet_Road_Openvino.cpp ├── Unet_Road_Openvino.h ├── Yolov5_Onnx_Deploy.cpp ├── Yolov5_Onnx_Deploy.h ├── Yolov5_Openvino_Deploy.cpp ├── Yolov5_Openvino_Deploy.h ├── Yolov5_Seg_Onnx.cpp ├── Yolov5_Seg_Onnx.h ├── Yolov5_Seg_Openvino_Deploy.cpp ├── Yolov5_Seg_Openvino_Deploy.h ├── Yolov6_Face.cpp ├── Yolov6_Face.h ├── Yolov6_Face_Openvino.cpp ├── Yolov6_Face_Openvino.h ├── Yolov8_KeyPoint.cpp ├── Yolov8_KeyPoint.h ├── Yolov8_KeyPoint_Openvino.cpp ├── Yolov8_KeyPoint_Openvino.h ├── common_api.cpp ├── common_api.h ├── keyPointRcnn.cpp ├── keyPointRcnn.h ├── keyPointRcnn_Openvino_Deploy.cpp ├── keyPointRcnn_Openvino_Deploy.h ├── main.cpp ├── ort_tutorial.cpp ├── ort_tutorial.h ├── qt-deploy.pro ├── readme.md ├── uideploy.cpp └── uideploy.h /DeepLabV3.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/DeepLabV3.cpp -------------------------------------------------------------------------------- /DeepLabV3.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/DeepLabV3.h -------------------------------------------------------------------------------- /DeepLabV3_Openvino_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/DeepLabV3_Openvino_Deploy.cpp -------------------------------------------------------------------------------- /DeepLabV3_Openvino_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/DeepLabV3_Openvino_Deploy.h -------------------------------------------------------------------------------- /FastRcnn_Openvino_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/FastRcnn_Openvino_Deploy.cpp -------------------------------------------------------------------------------- /FastRcnn_Openvino_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/FastRcnn_Openvino_Deploy.h -------------------------------------------------------------------------------- /FasterRcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/FasterRcnn.cpp -------------------------------------------------------------------------------- /FasterRcnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/FasterRcnn.h -------------------------------------------------------------------------------- /MaskRcnn_Seg_Onnx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/MaskRcnn_Seg_Onnx.cpp -------------------------------------------------------------------------------- /MaskRcnn_Seg_Onnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/MaskRcnn_Seg_Onnx.h -------------------------------------------------------------------------------- /MaskRcnn_Seg_Openvino_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/MaskRcnn_Seg_Openvino_Deploy.cpp -------------------------------------------------------------------------------- /MaskRcnn_Seg_Openvino_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/MaskRcnn_Seg_Openvino_Deploy.h -------------------------------------------------------------------------------- /ModelHandler.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/ModelHandler.cpp -------------------------------------------------------------------------------- /ModelHandler.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/ModelHandler.h -------------------------------------------------------------------------------- /Resnet18_Openvino_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Resnet18_Openvino_Deploy.cpp -------------------------------------------------------------------------------- /Resnet18_Openvino_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Resnet18_Openvino_Deploy.h -------------------------------------------------------------------------------- /Unet.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Unet.cpp -------------------------------------------------------------------------------- /Unet.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Unet.h -------------------------------------------------------------------------------- /Unet_Road_Openvino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Unet_Road_Openvino.cpp -------------------------------------------------------------------------------- /Unet_Road_Openvino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Unet_Road_Openvino.h -------------------------------------------------------------------------------- /Yolov5_Onnx_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Onnx_Deploy.cpp -------------------------------------------------------------------------------- /Yolov5_Onnx_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Onnx_Deploy.h -------------------------------------------------------------------------------- /Yolov5_Openvino_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Openvino_Deploy.cpp -------------------------------------------------------------------------------- /Yolov5_Openvino_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Openvino_Deploy.h -------------------------------------------------------------------------------- /Yolov5_Seg_Onnx.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Seg_Onnx.cpp -------------------------------------------------------------------------------- /Yolov5_Seg_Onnx.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Seg_Onnx.h -------------------------------------------------------------------------------- /Yolov5_Seg_Openvino_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Seg_Openvino_Deploy.cpp -------------------------------------------------------------------------------- /Yolov5_Seg_Openvino_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov5_Seg_Openvino_Deploy.h -------------------------------------------------------------------------------- /Yolov6_Face.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov6_Face.cpp -------------------------------------------------------------------------------- /Yolov6_Face.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov6_Face.h -------------------------------------------------------------------------------- /Yolov6_Face_Openvino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov6_Face_Openvino.cpp -------------------------------------------------------------------------------- /Yolov6_Face_Openvino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov6_Face_Openvino.h -------------------------------------------------------------------------------- /Yolov8_KeyPoint.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov8_KeyPoint.cpp -------------------------------------------------------------------------------- /Yolov8_KeyPoint.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov8_KeyPoint.h -------------------------------------------------------------------------------- /Yolov8_KeyPoint_Openvino.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov8_KeyPoint_Openvino.cpp -------------------------------------------------------------------------------- /Yolov8_KeyPoint_Openvino.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/Yolov8_KeyPoint_Openvino.h -------------------------------------------------------------------------------- /common_api.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/common_api.cpp -------------------------------------------------------------------------------- /common_api.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/common_api.h -------------------------------------------------------------------------------- /keyPointRcnn.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/keyPointRcnn.cpp -------------------------------------------------------------------------------- /keyPointRcnn.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/keyPointRcnn.h -------------------------------------------------------------------------------- /keyPointRcnn_Openvino_Deploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/keyPointRcnn_Openvino_Deploy.cpp -------------------------------------------------------------------------------- /keyPointRcnn_Openvino_Deploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/keyPointRcnn_Openvino_Deploy.h -------------------------------------------------------------------------------- /main.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/main.cpp -------------------------------------------------------------------------------- /ort_tutorial.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/ort_tutorial.cpp -------------------------------------------------------------------------------- /ort_tutorial.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/ort_tutorial.h -------------------------------------------------------------------------------- /qt-deploy.pro: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/qt-deploy.pro -------------------------------------------------------------------------------- /readme.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/readme.md -------------------------------------------------------------------------------- /uideploy.cpp: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/uideploy.cpp -------------------------------------------------------------------------------- /uideploy.h: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/edgarshang/qt-model-deploy/HEAD/uideploy.h --------------------------------------------------------------------------------