Why the outcome of my code is just white image?

조회 수: 2 (최근 30일)
Omer Hakan
Omer Hakan 2022년 9월 23일
편집: Matt J 2022년 9월 23일
Hi, I need to use conv2 to do my image processing assignment. I need to make a mean filter for smoothing but the outcome is always a white image. Here is my code
kernel = ones(3, 3) / 9; % 3x3 mean kernel
out = conv2(img1, kernel, 'same'); % Convolve keeping size of I
imshow(out)
What could be the problem?

채택된 답변

Matt J
Matt J 2022년 9월 23일
편집: Matt J 2022년 9월 23일
Give imshow() a second argument to see the desired grayscale range.
img1=im2gray(imread('cameraman.tif'));
kernel = ones(3, 3) / 9; % 3x3 mean kernel
out = conv2(img1, kernel, 'same'); % Convolve keeping size of I
imshow(out,[]); colorbar

추가 답변 (0개)

제품

Community Treasure Hunt

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

Start Hunting!

Translated by