diff options
author | 即使孤独依旧前行 <56543168+GengchenXU@users.noreply.github.com> | 2020-07-08 23:24:44 +0800 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 23:24:44 +0800 |
commit | 5f7527a6f841b72c4df59f6e5b23c8f5e9ccc986 (patch) | |
tree | eae93aa8a4f464b00fc98c06c9932f9c955fae2a /zh-cn | |
parent | 2877c63f00d7e91bc366d6fb2d3a5c1e6d5cb15a (diff) |
Update opencv-cn.html.markdown
Diffstat (limited to 'zh-cn')
-rw-r--r-- | zh-cn/opencv-cn.html.markdown | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/zh-cn/opencv-cn.html.markdown b/zh-cn/opencv-cn.html.markdown index 60b41100..06b997d5 100644 --- a/zh-cn/opencv-cn.html.markdown +++ b/zh-cn/opencv-cn.html.markdown @@ -34,7 +34,7 @@ cv2.imshow('Image',img) cv2.waitKey(0) # waitKey() 是一个键盘绑定函数,参数以毫秒为单位。对于GUI事件,必须使用waitKey()函数。 -# Writing an image +# 保存图片 cv2.imwrite('catgray.png',img) # 第一个参数是文件名,第二个参数是图像 |