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!

