2

I need to extract homogeneity, correlation, contrast, and energy texture features from a Gray-Level Co-Occurrence Matrix (GLCM).

Can anyone tell me any simple algorithm which can calculate these texture features for java implementation?

Tonechas
  • 13,398
  • 16
  • 46
  • 80
  • Did you have a look at the ImageJ plugin for [texture analysis](http://imagej.nih.gov/ij/plugins/texture.html)? In addition, a quick search on the ImageJ mailing list yielded [this post](http://imagej.1557.x6.nabble.com/Update-to-GLCM-Texture-td3698049.html) that links to additional source code. – Jan Eglinger Oct 28 '13 at 09:34

1 Answers1

2

These are so called haralick features. You could implement them on your own scince they are really easy.

A quick search for 'haralick java' turned up this code which, at a first glance, looks like something you could use. Code for Haralick Features

It is part of the jfeaturelib. Project Site

Mailerdaimon
  • 6,003
  • 3
  • 35
  • 46