How can i find maximum and minimum intensity values of gray image????

31 次查看(过去 30 天)
i8 = imread('lena512.bmp')
F = imshow(i8)
impixeli(i8)
minGrayLevel = min(grayImage(512:512));
maxGrayLevel = max(grayImage(512:512));

回答(1 个)

KALYAN ACHARJYA
KALYAN ACHARJYA 2020-2-16
min_intensity=min(grayImage(:));
max_intensity=max(grayImage(:));

类别

Help CenterFile Exchange 中查找有关 Image Processing Toolbox 的更多信息

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by