From 0d043903cf450fbfea86619d85b3e8eca6fd21f7 Mon Sep 17 00:00:00 2001 From: "Eric.Lee2021" <305141918@qq.com> Date: Thu, 25 Mar 2021 14:43:34 +0800 Subject: [PATCH] update --- README.md | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/README.md b/README.md index 5920989..62c1d31 100644 --- a/README.md +++ b/README.md @@ -33,7 +33,7 @@ * 另外同学们可以根据自己需求替换检测模型。 ### 2、手21关键点回归项目(handpose_x) * https://codechina.csdn.net/EricLee/handpose_x -* * [预训练模型下载地址(百度网盘 Password: 99f3 )](https://pan.baidu.com/s/1Ur6Ikp31XGEuA3hQjYzwIw) +* [预训练模型下载地址(百度网盘 Password: 99f3 )](https://pan.baidu.com/s/1Ur6Ikp31XGEuA3hQjYzwIw) ## 项目使用方法 ### 项目1:手势交互项目(local 本地版本) @@ -41,12 +41,12 @@ ### 2、确定摄像头连接成功。 ### 3、打开配置文件 lib/hand_lib/cfg/handpose.cfg 进行相关参数配置,具体配置参数如下,请仔细阅读(一般只需要配置模型路径及模型结构) ``` -detect_model_path=./components/hand_detect/weights/latest_416.pt #手部检测模型地址 +detect_model_path=./latest_416.pt #手部检测模型地址 detect_model_arch=yolo_v3 #检测模型类型 ,yolo or yolo-tiny detect_conf_thres=0.5 # 检测模型阈值 detect_nms_thres=0.45 # 检测模型 nms 阈值 -handpose_x_model_path=./components/hand_keypoints/weights/ReXNetV1-size-256-wingloss102-0.1063.pth # 21点手回归模型地址 +handpose_x_model_path=./ReXNetV1-size-256-wingloss102-0.1063.pth # 21点手回归模型地址 handpose_x_model_arch=rexnetv1 # 回归模型结构 camera_id = 0 # 相机 ID ,一般默认为0,如果不是请自行确认 -- GitLab