GMM is one of feature extraction technique for image
9 vues (au cours des 30 derniers jours)
Afficher commentaires plus anciens
I have to feature extraction and selection for an image. in case GMM itself feature extraction, selection or feature representation.
0 commentaires
Réponses (1)
Gayathri
le 3 Déc 2024 à 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 commentaires
Voir également
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!