summary refs log tree commit diff stats
path: root/opencv/code/a9.py
diff options
context:
space:
mode:
authorSudipto Mallick <smlckz@termux-alpine>2024-02-10 12:49:55 +0000
committerSudipto Mallick <smlckz@termux-alpine>2024-02-10 12:49:55 +0000
commit4182a108a01df3aa28009716472f0ef291704866 (patch)
tree8fabeb2d6ddff80b930c02b3d535b5447bbd41dc /opencv/code/a9.py
parent02884d29e4f5aea71364a203dcaecd53600d8aa4 (diff)
downloadzadania-4182a108a01df3aa28009716472f0ef291704866.tar.gz
Complete DIP assignments main
Diffstat (limited to 'opencv/code/a9.py')
-rw-r--r--opencv/code/a9.py10
1 files changed, 10 insertions, 0 deletions
diff --git a/opencv/code/a9.py b/opencv/code/a9.py
new file mode 100644
index 0000000..fab1a4e
--- /dev/null
+++ b/opencv/code/a9.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"
+
+result_image = cv2.subtract(image1, image2)
+
+cv2.imwrite("9o.jpg", 255 - result_image)