Need code for Median Filtering on Color images

8 次查看(过去 30 天)
Need Code for Median Filtering on Color images
Cheers
Jagadeesh
  1 个评论
Oleg Komarov
Oleg Komarov 2012-3-22
http://www.mathworks.com/matlabcentral/answers/6200-tutorial-how-to-ask-a-question-on-answers-and-get-a-fast-answer

请先登录,再进行评论。

采纳的回答

Bjorn Gustavsson
Bjorn Gustavsson 2012-3-22
Either do the median filter on the individual R,G and B planes. Or trasform the RGB image to some other colour format, for example HSV/HSI and do the median filtering on the Hue, Saturaion and Intensity planes and then transfer back to RGB. Matlab has a function for 2-D median filtering:
help medfilt2
HTH

更多回答(4 个)

Image Analyst
Image Analyst 2012-3-22
Here's a demo I've posted before. It gets rid of salt and pepper noise in a color image by median filtering the individual color planes and replacing the "salt" or "pepper" (bad) pixels with pixels taken from the corresponding location in the median filtered image. It's well commented so I'm sure you'll be easily able to follow it and make any modifications that you desire.
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 color demo image.
folder = fullfile(matlabroot, '\toolbox\images\imdemos');
baseFileName = 'peppers.png';
fullFileName = fullfile(folder, baseFileName);
% 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
rgbImage = imread(fullFileName);
% Get the dimensions of the image. numberOfColorBands should be = 3.
[rows columns numberOfColorBands] = size(rgbImage);
% Display the original color image.
subplot(3, 4, 1);
imshow(rgbImage);
title('Original color Image', 'FontSize', fontSize);
% Enlarge figure to full screen.
set(gcf, 'Position', get(0,'Screensize'));
% Extract the individual red, green, and blue color channels.
redChannel = rgbImage(:, :, 1);
greenChannel = rgbImage(:, :, 2);
blueChannel = rgbImage(:, :, 3);
% Display the individual red, green, and blue color channels.
subplot(3, 4, 2);
imshow(redChannel);
title('Red Channel', 'FontSize', fontSize);
subplot(3, 4, 3);
imshow(greenChannel);
title('Green Channel', 'FontSize', fontSize);
subplot(3, 4, 4);
imshow(blueChannel);
title('Blue Channel', 'FontSize', fontSize);
% Generate a noisy image. This has salt and pepper noise independently on
% each color channel so the noise may be colored.
noisyRGB = imnoise(rgbImage,'salt & pepper', 0.05);
subplot(3, 4, 5);
imshow(noisyRGB);
title('Image with Salt and Pepper Noise', 'FontSize', fontSize);
% Extract the individual red, green, and blue color channels.
redChannel = noisyRGB(:, :, 1);
greenChannel = noisyRGB(:, :, 2);
blueChannel = noisyRGB(:, :, 3);
% Display the noisy channel images.
subplot(3, 4, 6);
imshow(redChannel);
title('Noisy Red Channel', 'FontSize', fontSize);
subplot(3, 4, 7);
imshow(greenChannel);
title('Noisy Green Channel', 'FontSize', fontSize);
subplot(3, 4, 8);
imshow(blueChannel);
title('Noisy Blue Channel', 'FontSize', fontSize);
% Median Filter the channels:
redMF = medfilt2(redChannel, [3 3]);
greenMF = medfilt2(greenChannel, [3 3]);
blueMF = medfilt2(blueChannel, [3 3]);
% Find the noise in the red.
noiseImage = (redChannel == 0 | redChannel == 255);
% Get rid of the noise in the red by replacing with median.
noiseFreeRed = redChannel;
noiseFreeRed(noiseImage) = redMF(noiseImage);
% Find the noise in the green.
noiseImage = (greenChannel == 0 | greenChannel == 255);
% Get rid of the noise in the green by replacing with median.
noiseFreeGreen = greenChannel;
noiseFreeGreen(noiseImage) = greenMF(noiseImage);
% Find the noise in the blue.
noiseImage = (blueChannel == 0 | blueChannel == 255);
% Get rid of the noise in the blue by replacing with median.
noiseFreeBlue = blueChannel;
noiseFreeBlue(noiseImage) = blueMF(noiseImage);
% Reconstruct the noise free RGB image
rgbFixed = cat(3, noiseFreeRed, noiseFreeGreen, noiseFreeBlue);
subplot(3, 4, 9);
imshow(rgbFixed);
title('Restored Image', 'FontSize', fontSize);
  3 个评论
selvaraj k
selvaraj k 2017-2-21
sir i can't understand this code part..please help me..
% Find the noise in the red. noiseImage = (redChannel == 0 | redChannel == 255); % Get rid of the noise in the red by replacing with median. noiseFreeRed = redChannel; noiseFreeRed(noiseImage) = redMF(noiseImage);
% Find the noise in the green. noiseImage = (greenChannel == 0 | greenChannel == 255); % Get rid of the noise in the green by replacing with median. noiseFreeGreen = greenChannel; noiseFreeGreen(noiseImage) = greenMF(noiseImage);
% Find the noise in the blue. noiseImage = (blueChannel == 0 | blueChannel == 255); % Get rid of the noise in the blue by replacing with median. noiseFreeBlue = blueChannel; noiseFreeBlue(noiseImage) = blueMF(noiseImage);
Image Analyst
Image Analyst 2017-2-22
noiseImage is a binary image that is true for pixels that are pure black or pure white.
Doing noiseFreeRed = redChannel; initializes the output to the noisy input.
Doing
noiseFreeRed(noiseImage) = redMF(noiseImage);
replaces the pixels that are in the mask (pixels that are pure black or pure white only) with the corresponding pixels in the same location in the median filtered image. So the whole image is not changed to be the median filter, only the corrupted pixels are changed and replaced with the fixed/good median filtered values.

请先登录,再进行评论。


uvan siya
uvan siya 2013-1-30
i need coding for mean shift filtering alone can anyone post for me plsssss

Latha
Latha 2017-7-13
Can we apply the wiener filter(wiener2) in the same way i.e without using rgb2gray

SARATH JV
SARATH JV 2017-9-23
编辑:SARATH JV 2017-9-23
@ Image Analyst Worked perfectly simple and explained prgm with great coding well done and thanks for uploading..

Community Treasure Hunt

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

Start Hunting!

Translated by