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

조회 수: 27 (최근 30일)
Quang Long
Quang Long 2020년 2월 16일
댓글: Quang Long 2020년 2월 17일
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