-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathhistogram.py
45 lines (33 loc) · 970 Bytes
/
histogram.py
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
# pylint:disable=no-member
import cv2 as cv
import matplotlib.pyplot as plt
import numpy as np
img = cv.imread("Photos/pic.jpg")
cv.imshow("Cats", img)
blank = np.zeros(img.shape[:2], dtype="uint8")
# gray = cv.cvtColor(img, cv.COLOR_BGR2GRAY)
# cv.imshow('Gray', gray)
mask = cv.circle(blank, (img.shape[1] // 2, img.shape[0] // 2), 100, 255, -1)
masked = cv.bitwise_and(img, img, mask=mask)
cv.imshow("Mask", masked)
# GRayscale histogram
# gray_hist = cv.calcHist([gray], [0], mask, [256], [0,256] )
# plt.figure()
# plt.title('Grayscale Histogram')
# plt.xlabel('Bins')
# plt.ylabel('# of pixels')
# plt.plot(gray_hist)
# plt.xlim([0,256])
# plt.show()
# Colour Histogram
plt.figure()
plt.title("Colour Histogram")
plt.xlabel("Bins")
plt.ylabel("# of pixels")
colors = ("b", "g", "r")
for i, col in enumerate(colors):
hist = cv.calcHist([img], [i], mask, [256], [0, 256])
plt.plot(hist, color=col)
plt.xlim([0, 256])
plt.show()
cv.waitKey(0)