how to display variance of an image in command box?
1 Ansicht (letzte 30 Tage)
Ältere Kommentare anzeigen
Komal Gaikwad
am 25 Mär. 2018
Kommentiert: Komal Gaikwad
am 25 Mär. 2018
median_image=medfilt2(im_n) axes(handles.axes3); imshow(median_image);
%variance% IM= im2double(median_image); V_image = var(IM(:));
1 Kommentar
Akzeptierte Antwort
Image Analyst
am 25 Mär. 2018
Get rid of the semicolon and the value will report to the command window:
V_image = var(IM(:))
Beware though that im2double will scale the image to the range 0-1, so your variance will be the variance of that scaled image, not of the original image. If you want the variance of the original image, use double() instead of im2double().
Weitere Antworten (0)
Siehe auch
Produkte
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!