필터 지우기
필터 지우기

grayscale image average without matlab function

조회 수: 1 (최근 30일)
lech king
lech king 2020년 10월 8일
답변: Ameer Hamza 2020년 10월 8일
Hi
I want to calculate the average of 3x3 cells of a matrix that contains the values of a grayscale image, which is a variable type is unit8
But for example, 2 cells have a value of 200, the sum of 2 of which is 400, but due to the Limitations of unit8 255 is calculated.
when use
pic=im2unit16(pic)
or
pic=unit16(pic)
then use imshow the result is a blank page
Thank you for your help

채택된 답변

Ameer Hamza
Ameer Hamza 2020년 10월 8일
First convert to uint16 (or double. Average the values and convert back to uint8
img = imread('pears.png');
r = img(:,:,1);
g = img(:,:,1);
b = img(:,:,1);
r = uint16(r);
g = uint16(g);
b = uint16(b);
img_gray = (r+g+b)/3;
imshow(uint8(img_gray))

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Convert Image Type에 대해 자세히 알아보기

태그

제품


릴리스

R2019b

Community Treasure Hunt

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

Start Hunting!

Translated by