Why the outcome of my code is just white image?

3 visualizaciones (últimos 30 días)
Omer Hakan
Omer Hakan el 23 de Sept. de 2022
Editada: Matt J el 23 de Sept. de 2022
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?

Respuesta aceptada

Matt J
Matt J el 23 de Sept. de 2022
Editada: Matt J el 23 de Sept. de 2022
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

Más respuestas (0)

Categorías

Más información sobre Image Processing Toolbox en Help Center y File Exchange.

Productos

Community Treasure Hunt

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

Start Hunting!

Translated by