noise removal in Image

46 次查看(过去 30 天)
FIR
FIR 2012-12-13
I have to remove noise in image ,i di dit ny median,weiner,progressive median,but i did not get any codes for switching median filter,can you please tell is three any codes available fir it

采纳的回答

Jürgen
Jürgen 2012-12-13
Hi, first, quite a challenge to understand your question?
did you check ' How to remove noise? or something like that in matlab help it is quite well explained
ImageOrg = imread('ImageName'); ImageFilt= medfilt2(ImageOrg, [m n]) with m and n the size of your window
r,J

更多回答(2 个)

Image Analyst
Image Analyst 2012-12-13
编辑:Image Analyst 2012-12-14
I don't know what "switching median" or "progressive median" filters are. They may just be names that some authors invented for their particular twist on the standard median filter. There are probably programs for them if you read about them somewhere - ask the authors. Here's a modified median filter demo I've posted before.
clc; % Clear command window.
clear; % Delete all variables.
close all; % Close all figure windows except those created by imtool.
imtool close all; % Close all figure windows created by imtool.
workspace; % Make sure the workspace panel is showing.
fontSize = 15;
% Read in a standard MATLAB demo image.
folder = fullfile(matlabroot, '\toolbox\images\imdemos');
baseFileName = 'coins.png';
% Get the full filename, with path prepended.
fullFileName = fullfile(folder, baseFileName);
if ~exist(fullFileName, 'file')
% Didn't find it there. Check the search path for it.
fullFileName = baseFileName; % No path this time.
if ~exist(fullFileName, 'file')
% Still didn't find it. Alert user.
errorMessage = sprintf('Error: %s does not exist.', fullFileName);
uiwait(warndlg(errorMessage));
return;
end
end
grayImage = imread(fullFileName);
% Get the dimensions of the image. numberOfColorBands should be = 1.
[rows columns numberOfColorBands] = size(grayImage);
% Display the original image.
subplot(2, 2, 1);
imshow(grayImage);
title('Original Gray Scale Image', 'FontSize', fontSize);
% Enlarge figure to full screen.
set(gcf, 'Position', get(0,'Screensize'));
% Generate a noisy image with salt and pepper noise.
noisyImage = imnoise(grayImage,'salt & pepper', 0.05);
subplot(2, 2, 2);
imshow(noisyImage);
title('Image with Salt and Pepper Noise', 'FontSize', fontSize);
% Median Filter the image:
medianFilteredImage = medfilt2(noisyImage, [3 3]);
% Find the noise. It will have a gray level of either 0 or 255.
noiseImage = (noisyImage == 0 | noisyImage == 255);
% Get rid of the noise by replacing with median.
noiseFreeImage = noisyImage; % Initialize
noiseFreeImage(noiseImage) = medianFilteredImage(noiseImage); % Replace.
% Display the image.
subplot(2, 2, 3);
imshow(noiseFreeImage);
title('Restored Image', 'FontSize', fontSize);

Jürgen
Jürgen 2012-12-13
编辑:Jürgen 2012-12-13
Ok so I indeed did not understand your question, I got interested and just did some googling: first found a paper: http://www.ijser.org/researchpaper%5CSwitching-Median-Filter-For-Image-Enhancement.pdf and then found http://www.mathworks.com/matlabcentral/fileexchange/21757-progressive-switching-median-filter I think that could help , basically the result of some googling regardsJ
  1 个评论
Image Analyst
Image Analyst 2012-12-14
Good searching. It looks like nedfilt2(), imerode(), and imdilate() could be used to implement that algorithm fairly quickly.

请先登录,再进行评论。

类别

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