Mode & median filters for color image
2 次查看(过去 30 天)
显示 更早的评论
Can you please send the syntax for mode and median filters for image restoration of color images.It would be very helpful
0 个评论
采纳的回答
Sean de Wolski
2011-5-6
%Median:
Irgb = your_rgb_image;
for ii = 1:3
Irgb(:,:,ii) = medfilt2(Irgb(:,:,ii),ones(3)); %3x3 median
end
0 个评论
更多回答(1 个)
Darshan A
2011-5-6
4 个评论
Sean de Wolski
2011-5-7
No it's mine.
medfilt2(Irgb,[3 3]);
I was confusing it with conv2. (what you would use for mean or std)
另请参阅
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!