I am using skimage library for most of image analysis work.
skimage
I have an RGB image and I intend to extract texture features like entropy
texture
entropy
from skimage.feature import greycomatrix, greycoprops dis = (greycoprops(glcm, 'dissimilarity')) plt.hist(dis.ravel(), normed=True, bins=256, range=(0, 30),facecolor='0.5');plt.show()