Reputation: 716
I like to know what is the best way of classifying texture images that have extreme randomness but contains slight repeated patterns. I know nothing in this area and any link that points to good resources are welcome.
I want to separating two images that contain 8 bit grayscale textures that have visually no image but i suppose algorithms are able to detect similarities and differences.
Upvotes: 2
Views: 305
Reputation: 2508
basically you need to extract texture features. Some of the texture features you should try using are 1. GLCM features (matlab implementation : http://www.mathworks.com/matlabcentral/fileexchange/22187-glcm-texture-features) 2. LBP (local binary pattern) 3. Gabor features (I have an implementation for this, pls tell me if u want these) 4. Wavelet features
Another excellent source to solution to your problem http://academiccommons.columbia.edu/download/fedora_content/download/ac:128294/CONTENT/81.pdf
Upvotes: 2