diff options
author | Max Schumacher <maximilianbschumacher@gmail.com> | 2020-07-08 17:41:36 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-07-08 17:41:36 +0200 |
commit | 7929f1524125a7cd5c799bdba93f8420a878f814 (patch) | |
tree | f42f6974738bd3c949d6d286cccc42809292e98d | |
parent | 426c18154211c19750f6216b9f56e92b1e8b6fd2 (diff) | |
parent | 5f7527a6f841b72c4df59f6e5b23c8f5e9ccc986 (diff) |
Merge pull request #3968 from GengchenXU/master
fix translation error for opencv-cn.html.markdown
-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) # 第一个参数是文件名,第二个参数是图像 |