Need code to apply median filter and then gaussian filter to patches of an image
조회 수: 26 (최근 30일)
이전 댓글 표시
The image contain some noise and then median filter and then gaussian filter to remove the noise
댓글 수: 0
답변 (1개)
Bruno Pop-Stefanov
2013년 11월 21일
% Read image
img = imread('yourimage.jpg');
% Median filtering
filtered_img = medfilt2(img);
You can use fspecial to create a Gaussian filter and use imfilter to filter the image with that filter. Example:
% Read image
img = imread('yourimage.jpg');
% Gaussian filter of size 11-by-11 and std 3 pixels
h = fspecial('gaussian', 11, 3);
% Convolve
filtered_img = imfilter(img, h);
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!