I'm new to computer vision and image processing, anyway I'm trying to calculate the histogram of image y_channel which has previously been blurred with cv2.GaussianBlur and converted from BGR to YCr-cb color space. However the end result isn't quite what I was expecting, it doesn't seems to have the typical look of a Gaussian distribution. The following is my image and plot.


And this is the code snippet.
cv2.imwrite("/home/carlo/face.png", roi2)
img = cv2.imread('/home/carlo/face.png')
yuma = cv2.split(img)[0]
Hist = yuma.flatten().tolist()
grayscales = np.unique(Hist)
frequencies = [Hist.count(x) for x in grayscales]
plt.figure()
plt.bar(grayscales,frequencies,color='g',edgecolor='k')
plt.show()
Can anyone tell what I'm doing wrong? Thanks