필터 지우기
필터 지우기

Median filter without medfilt2

조회 수: 5 (최근 30일)
Franzi
Franzi 2020년 6월 7일
댓글: Rena Berman 2020년 10월 12일
Hello everyone,
I have to implement the median filter for a gray-scale picture and a variable window(for example 3x3, 5x5, 9x9, etc) without the built in function medfilt2. It's allowed to use median() and sort() and reshape(). In the edges where you cannot build the median, we should output the original value.
Can someone help me?
  댓글 수: 2
Rik
Rik 2020년 6월 19일
Question recovered from Google cache:
Hello everyone,
I have to implement the median filter for a gray-scale picture and a variable window(for example 3x3, 5x5, 9x9, etc) without the built in function medfilt2. It's allowed to use median() and sort() and reshape(). In the edges where you cannot build the median, we should output the original value.
Can someone help me?
Rena Berman
Rena Berman 2020년 10월 12일
(Answers Dev) Restored edit

댓글을 달려면 로그인하십시오.

답변 (2개)

Matt J
Matt J 2020년 6월 7일
편집: Matt J 2020년 6월 7일
Since it's a homework assignment, I don't think you need to be computationally eficient. Just loop over all the appropriately sized sub-matrices of the image and apply median() to each... You could alos use blockproc()
  댓글 수: 5
Matt J
Matt J 2020년 6월 7일
편집: Matt J 2020년 6월 7일
None that minimizes memory consumption, I don't believe. You could unfold all of the window data using a very small loop like so,
Image=rand(300); %fake image
N=3; %window size
C=cell(1,N^2);
for i=1:N
for j=1:N
C{i,j} = reshape( Image(i:end+i-N,j:end+j-N) ,[],1);
end
end
C=cell2mat(C(:).');
Now you have a matrix C whos rows are the different NxN window data. You can now conveniently operate across the rows using sort() or whatever you want.. But note that this consumes N^2 times the amount of memory as a single image:
>> whos C
Name Size Bytes Class Attributes
C 88804x9 6393888 double
Franzi
Franzi 2020년 6월 8일
ok, thank you!

댓글을 달려면 로그인하십시오.


Image Analyst
Image Analyst 2020년 6월 7일
Franzi: I think I already gave you my nlfilter demo in your other question. All you had to do was change the function to do median() instead of thresholding. Here, I've attached a new m-file where I've done this easy change for you. I just replaced about 5 lines of code with a call to median - pretty easy.

Community Treasure Hunt

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

Start Hunting!

Translated by