GMM is one of feature extraction technique for image

1 次查看(过去 30 天)
I have to feature extraction and selection for an image. in case GMM itself feature extraction, selection or feature representation.

回答(1 个)

Gayathri
Gayathri 2024-12-3
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.

类别

Help CenterFile Exchange 中查找有关 Deep Learning Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by