readme update
This commit is contained in:
parent
c6d6c67162
commit
b367917efc
27
README.md
27
README.md
|
@ -70,7 +70,7 @@ webcam_opencv(is_autoSaveFrame=True) # 自动保存帧
|
||||||
```shell
|
```shell
|
||||||
sudo docker pull zengdockerdocker/opencv-webcam-script:v0.2 # 镜像拉取
|
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 # 进入容器
|
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 # 运行脚本程序
|
||||||
python3 opencv_webcam.py -isasf # 自动保存帧
|
python3 opencv_webcam.py -isasf # 自动保存帧
|
||||||
|
@ -108,10 +108,8 @@ python opencv_webcam.py -dev rtsp://username:password@xxx.xxx.xxx
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# 默认按q键退出
|
# 默认按q键退出
|
||||||
# 设置z键退出
|
python opencv_webcam.py -q z # 设置z键退出
|
||||||
python opencv_webcam.py -q z
|
python opencv_webcam.py -q k # 设置k键退出
|
||||||
# 设置k键退出
|
|
||||||
python opencv_webcam.py -q k
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
@ -145,7 +143,7 @@ python opencv_webcam.py -ishsf
|
||||||
#### :bulb: 自定义捕获键
|
#### :bulb: 自定义捕获键
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# 设置z键为捕获键
|
# 设置z键为捕获键,默认为a键
|
||||||
python opencv_webcam.py -ishsf -fck z
|
python opencv_webcam.py -ishsf -fck z
|
||||||
```
|
```
|
||||||
|
|
||||||
|
@ -155,10 +153,8 @@ python opencv_webcam.py -ishsf -fck z
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# 重塑宽度300 高度200
|
# 重塑宽度300 高度200
|
||||||
# 自动版
|
python opencv_webcam.py -isasf -isrf -rf 300 200 # 自动版
|
||||||
python opencv_webcam.py -isasf -isrf -rf 300 200
|
python opencv_webcam.py -ishsf -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
|
```shell
|
||||||
# 宽高缩放比为0.5
|
# 宽高缩放比为0.5
|
||||||
# 自动版
|
python opencv_webcam.py -isasf -isrf -rrf 0.5 # 自动版
|
||||||
python opencv_webcam.py -isasf -isrf -rrf 0.5
|
python opencv_webcam.py -ishsf -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: 设置暂停键
|
#### :bulb: 设置暂停键
|
||||||
|
|
||||||
```shell
|
```shell
|
||||||
# 默认为p键
|
# 设置w键为暂停键,默认为p键
|
||||||
python opencv_webcam.py -p w
|
python opencv_webcam.py -p w # 按任意键继续
|
||||||
# 按任意键继续
|
|
||||||
```
|
```
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue