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

27 visualizaciones (últimos 30 días)
Quang Long
Quang Long el 16 de Feb. de 2020
Comentada: Quang Long el 17 de Feb. de 2020
i8 = imread('lena512.bmp')
F = imshow(i8)
impixeli(i8)
minGrayLevel = min(grayImage(512:512));
maxGrayLevel = max(grayImage(512:512));

Respuestas (1)

KALYAN ACHARJYA
KALYAN ACHARJYA el 16 de Feb. de 2020
min_intensity=min(grayImage(:));
max_intensity=max(grayImage(:));

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Community Treasure Hunt

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

Start Hunting!

Translated by