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

32 Ansichten (letzte 30 Tage)
Quang Long
Quang Long am 16 Feb. 2020
Kommentiert: Quang Long am 17 Feb. 2020
i8 = imread('lena512.bmp')
F = imshow(i8)
impixeli(i8)
minGrayLevel = min(grayImage(512:512));
maxGrayLevel = max(grayImage(512:512));

Antworten (1)

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

Kategorien

Mehr zu Image Processing Toolbox 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!

Translated by