summary refs log tree commit diff stats
path: root/opencv/code/a3.py
diff options
context:
space:
mode:
Diffstat (limited to 'opencv/code/a3.py')
-rw-r--r--opencv/code/a3.py14
1 files changed, 14 insertions, 0 deletions
diff --git a/opencv/code/a3.py b/opencv/code/a3.py
new file mode 100644
index 0000000..5a8ffcd
--- /dev/null
+++ b/opencv/code/a3.py
@@ -0,0 +1,14 @@
+import cv2
+import matplotlib.pyplot as plt
+
+image = cv2.imread("1i.png", cv2.IMREAD_GRAYSCALE)
+
+histogram = cv2.calcHist([image], [0], None, [256], [0, 256])
+
+plt.figure(figsize=(8, 5))
+plt.plot(histogram, color="black")
+plt.title("Grayscale Histogram")
+plt.xlabel("Pixel Value")
+plt.ylabel("Frequency")
+plt.xlim([0, 256])
+plt.savefig("3.svg")