0

There is a type of texture features called GLGCM (Gray Level Gradient Based Co-occurrence Matrix) that captures information about how different image gradients co-occur with each other.

GLGCM is different from normal GLCM.

Can anyone help me find an implementation for GLGCM in Python?

Tonechas
  • 13,398
  • 16
  • 46
  • 80
Ahmed Gad
  • 691
  • 1
  • 7
  • 26

1 Answers1

1

I don't have access to the paper right now, so I am not sure about how the details are but, what if you use GLCM on gradient image normalized into 0-255 range?

Python implementation could be found in scikit-image library

flipajs
  • 46
  • 4
  • Thanks for your valuable note. I will try to make what you advised me to do. At all it will be nice to have a look over the paper http://moscow.sci-hub.bz/ed6a835cc8539bde9717e4aa5d56f94b/10.1109%40ICSMC.1996.569778.pdf in case it can be implemented easily. – Ahmed Gad Jan 13 '17 at 10:07