How to convert 'Structure' ?!
이전 댓글 표시
Hi everybody;
I am trying to get feature value out of structure array..
for example:
glcms = graycomatrix(CG,'Offset',[0 1]);
Cont_RGB = graycoprops(glcms,'Contrast');
F=Cont_RGB;
F= Contrast: 0.2546 % i wana to remove word contrast and get the number only!
How can i get the number?
Thank you
채택된 답변
추가 답변 (2개)
Matthew Eicholtz
2013년 6월 29일
Try
F.Contrast
댓글 수: 2
Mariam Sheha
2013년 6월 29일
Walter Roberson
2013년 6월 30일
Cont_RGB = graycoprops(glcms,'Contrast');
Cont_RGB.Contrast
The "." between the variable name and "Contrast" is literal, part of the syntax.
Image Analyst
2013년 6월 29일
theNumber = F.Contrast;
댓글 수: 3
Mariam Sheha
2013년 6월 29일
Image Analyst
2013년 6월 30일
All 3 people answered with the same thing, and you accepted the third response, so I think we all knew what you meant. Hopefully you're now using Walter's answer, and are not doing unnecessary operations like converting to a cell array and then converting the cell array to a matrix. You may find it helpful to read the FAQ: http://matlab.wikia.com/wiki/FAQ#What_is_a_cell_array.3F
Mariam Sheha
2013년 6월 30일
카테고리
도움말 센터 및 File Exchange에서 Convert Image Type에 대해 자세히 알아보기
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!