readme update

This commit is contained in:
13339479676 2022-01-16 12:38:05 +08:00
parent c6d6c67162
commit b367917efc
1 changed files with 10 additions and 17 deletions

View File

@ -70,7 +70,7 @@ webcam_opencv(is_autoSaveFrame=True) # 自动保存帧
```shell
sudo docker pull zengdockerdocker/opencv-webcam-script:v0.2 # 镜像拉取
xhost +local:root # 配置xhost
xhost +local:root # 配置xhost(重要)
sudo docker run --ipc=host -it -v /tmp/.X11-unix:/tmp/.X11-unix -e DISPLAY=unix$DISPLAY --device=/dev/video0:/dev/video0 zengdockerdocker/opencv-webcam-script:v0.2 # 进入容器
python3 opencv_webcam.py # 运行脚本程序
python3 opencv_webcam.py -isasf # 自动保存帧
@ -108,10 +108,8 @@ python opencv_webcam.py -dev rtsp://username:password@xxx.xxx.xxx
```shell
# 默认按q键退出
# 设置z键退出
python opencv_webcam.py -q z
# 设置k键退出
python opencv_webcam.py -q k
python opencv_webcam.py -q z # 设置z键退出
python opencv_webcam.py -q k # 设置k键退出
```
@ -145,7 +143,7 @@ python opencv_webcam.py -ishsf
#### :bulb: 自定义捕获键
```shell
# 设置z键为捕获键
# 设置z键为捕获键默认为a键
python opencv_webcam.py -ishsf -fck z
```
@ -155,10 +153,8 @@ python opencv_webcam.py -ishsf -fck z
```shell
# 重塑宽度300 高度200
# 自动版
python opencv_webcam.py -isasf -isrf -rf 300 200
# 手动版
python opencv_webcam.py -ishsf -isrf -rf 300 200
python opencv_webcam.py -isasf -isrf -rf 300 200 # 自动版
python opencv_webcam.py -ishsf -isrf -rf 300 200 # 手动版
```
@ -167,10 +163,8 @@ python opencv_webcam.py -ishsf -isrf -rf 300 200
```shell
# 宽高缩放比为0.5
# 自动版
python opencv_webcam.py -isasf -isrf -rrf 0.5
# 手动版
python opencv_webcam.py -ishsf -isrf -rrf 0.5
python opencv_webcam.py -isasf -isrf -rrf 0.5 # 自动版
python opencv_webcam.py -ishsf -isrf -rrf 0.5 # 手动版
```
@ -217,9 +211,8 @@ python opencv_webcam.py -isasf -fss png -jq 5
#### :bulb: 设置暂停键
```shell
# 默认为p键
python opencv_webcam.py -p w
# 按任意键继续
# 设置w键为暂停键默认为p键
python opencv_webcam.py -p w # 按任意键继续
```