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

26 visualizzazioni (ultimi 30 giorni)
i8 = imread('lena512.bmp')
F = imshow(i8)
impixeli(i8)
minGrayLevel = min(grayImage(512:512));
maxGrayLevel = max(grayImage(512:512));

Risposte (1)

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

Categorie

Scopri di più su Image Processing Toolbox in Help Center e File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by