Neuroglycerin / neukrill-net-tools

Tools coded as part of the NDSB competition.
MIT License
0 stars 0 forks source link

Haralick texture features #73

Closed scottclowe closed 9 years ago

scottclowe commented 9 years ago

Extract Haralick texture features from the image. Apparently, these are popular in biological CV.

http://murphylab.web.cmu.edu/publications/boland/boland_node26.html http://scikit-image.org/docs/dev/auto_examples/plot_glcm.html

scottclowe commented 9 years ago

Might be easier to compute with mahotas than with skimage.

http://mahotas.readthedocs.org/en/latest/api.html?highlight=haralick#mahotas.features.haralick

scottclowe commented 9 years ago

This should subclass HighLevelFeatures, and be computed with mahotas.features.haralick using the return_mean_ptp flag to take the angular mean.