how to set comparisons between a image matrix and table?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
i have a table with values and matlab files for those values i need my final image color intensities to compare itself to table and if it falls among those ranges(0-200 etc) the corresponding .m files should execute.
![](https://www.mathworks.com/matlabcentral/answers/uploaded_files/156816/image.png)
2 Kommentare
Antworten (1)
Image Analyst
am 16 Feb. 2014
Try this:
minGL = min(grayImage(:));
maxGL = max(grayImage(:));
% Run appropriate m-file for whatever range the image has.
if minGL > 0 && maxGL <= 100
bar1;
elseif minGL > 100 && maxGL <= 200
bar2;
elsif minGL > 200 && maxGL <= 255
bar3;
else
warningMessage = sprintf('The image range does not fall completely within the 3 ranges specified.\nYour image range = %.1f to %.1f', minGL, maxGL);
uiwait(warndlg(warningMessage));
end
2 Kommentare
Image Analyst
am 19 Feb. 2014
Of course, because the min is 0 (where the black mask is), and the max is probably greater than 100, so it doesn't fit into the tight ranges you're checking for. You're requiring BOTH the max and min to fit into the range but what happens is that only one fits in, not both. I really don't know what you're thinking but you'll have to rethink this algorithm. Maybe you want to check that only the mean intensity is in that range, not all the pixels being in that range - I don't know.
Siehe auch
Kategorien
Mehr zu Numeric Types finden Sie in Help Center und File Exchange
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!