How i can extract GLCM features from 3d volumetric brain tumor images?
1 回表示 (過去 30 日間)
古いコメントを表示
I need to extract GLCM features and classification this features by SVM code.
0 件のコメント
回答 (1 件)
Mandar
2023 年 2 月 1 日
The GLCM features can be is obtained by computing gray-level co-occurrence matrix using “graycomatrix”. Next, the “graycoprops” computes the properties such as Entropy, Homogeneity etc. by processing the matrix. Currently, “graycomatrix” function supports only 2-D intensity images as input. As a potential workaround, convert the 3-d image to the 2-d gray-level image using “im2gray” then extract the GLCM features. Refer the following documentation link to know more about GLCM properties.
Refer the following documentation link to know more about SVM classifier.
0 件のコメント
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!