summary refs log tree commit diff stats
path: root/opencv/code/a8.py
diff options
context:
space:
mode:
Diffstat (limited to 'opencv/code/a8.py')
-rw-r--r--opencv/code/a8.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/opencv/code/a8.py b/opencv/code/a8.py
new file mode 100644
index 0000000..d1cdfb5
--- /dev/null
+++ b/opencv/code/a8.py
@@ -0,0 +1,10 @@
+import cv2
+
+image1 = cv2.imread("9i1.jpg", cv2.IMREAD_GRAYSCALE)
+image2 = cv2.imread("9i2.jpg", cv2.IMREAD_GRAYSCALE)
+
+assert image1.shape == image2.shape, "Input images must have the same dimensions"
+
+averaged_image = cv2.addWeighted(image1, 0.5, image2, 0.5, 0)
+
+cv2.imwrite("8o.jpg", averaged_image)