Why the outcome of my code is just white image?

2 次查看(过去 30 天)
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 个)

类别

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