We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent d3ed80a commit 88af14bCopy full SHA for 88af14b
ch10-图像上的算术运算/10.addWeighted.py
@@ -8,6 +8,9 @@
8
# res=img1+img
9
# 两幅图像的大小 类型必须一致 ,或者第二个 图像可以使一个简单的标量值。
10
11
+# You can use the function cv2.add() to add two images. Of course, you can also use numpy directly.
12
+# res=img1+img
13
+# The size and type of the two images must be the same, or the second image can be a simple scalar value.
14
15
x = np.uint8([250])
16
y = np.uint8([10])
0 commit comments