GMM is one of feature extraction technique for image
9 views (last 30 days)
Show older comments
I have to feature extraction and selection for an image. in case GMM itself feature extraction, selection or feature representation.
0 Comments
Answers (1)
Gayathri
on 3 Dec 2024 at 5:21
LBP is a simple and grayscale invariant texture descriptor measure for classification.
MATLAB provides a function “extractLBPFeatures” to find the LBP features without coding it explicitly. We can obtain the LBP features a follows.
features = extractLBPFeatures(I)
where I is the input image.
Another function will be "graycomatrix" which also allow you to extract the texture features. It creates a gray-level co-occurrence matrix (GLCM) from image.
For more information on the “extractLBPFeatures” function and examples associated with it, please refer to the following link.
For more information on "graycomatrix", please refer to the below link.
Hope you find this information helpful.
0 Comments
See Also
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!