Image Quantization in GLCM
Mostra commenti meno recenti
Image quantization is an important step for feature extraction through GLCM. Although there are many questions related to this but there is no proper answer for Quantization problem in MATLAB.
I am using this code:
i= imread('image');
g=rgb2gray(i);
levels=multithresh(g,7);
A=imquantize(g, levels);
B = uint8(A);
glcm=graycomatrix(B, 'offset', [-1 0]);
stats = graycoprops(glcm);
4 Commenti
KALYAN ACHARJYA
il 17 Feb 2021
Sir, more specific question?
Junaid Dar Dar
il 17 Feb 2021
KALYAN ACHARJYA
il 17 Feb 2021
Modificato: KALYAN ACHARJYA
il 17 Feb 2021
"code it give some solution?
Can you share the objective?
B have only 8 levels, whereas g have 256 levels.
Junaid Dar Dar
il 17 Feb 2021
Risposte (0)
Categorie
Scopri di più su Image Filtering and Enhancement in Centro assistenza e File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!