# oldman_detect_c++ **Repository Path**: sunqiangAAA/oldmandetectc ## Basic Information - **Project Name**: oldman_detect_c++ - **Description**: 基于yolov8-seg的老人、护士和床位检测 - **Primary Language**: Unknown - **License**: MulanPSL-2.0 - **Default Branch**: master - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 2 - **Forks**: 0 - **Created**: 2024-07-18 - **Last Updated**: 2025-08-17 ## Categories & Tags **Categories**: Uncategorized **Tags**: Cpp, OpenSSL, onnx, 实例分割 ## README # OldmanDetection-onnxruntime 养老院老人、护士和病床识别 ## 依赖: - OpenCV 4.x - ONNXRuntime 1.7+ - OS: Tested on Windows 10 and Ubuntu 20.04 - CUDA 11+ [Optional] - OpenSSL ## 构建 ```bash 修改CMakeLists.txt中ONNXRUNTIME_DIR路径为你自己项目的路径 mkdir build cd build cmake .. cmake --build . ``` ## 运行 模型权重文件:链接: https://pan.baidu.com/s/1i3l4I0iNtBPTUZkl4eNFvw?pwd=6xr9 提取码: 6xr9 下载后放置在根目录models下。 使用CPU: ```shell # On Linux ./yolo_ort --model_path --image --output ``` 使用GPU: 从百度云盘下载动态库文件并替换根目录lib文件: 链接: [https://pan.baidu.com/s/1raMphemEJU2OuWooXYUzgg?pwd=ra5t](https://gitee.com/link?target=https%3A%2F%2Fpan.baidu.com%2Fs%2F1raMphemEJU2OuWooXYUzgg%3Fpwd%3Dra5t) 提取码: ra5t ```shell # On Linux ./yolo_ort --model_path --image --output --gpu ``` ## 参考 - YOLO v5 repo: https://github.com/ultralytics/yolov5 - YOLOv5 Runtime Stack repo: https://github.com/zhiqwang/yolov5-rt-stack - ONNXRuntime Inference examples: https://github.com/itsnine/yolov5-onnxruntime - oldman_detect:https://gitee.com/sunqiangAAA/oldman_detect