Fspecial Disk Filter Shape

6 views (last 30 days)
B
B on 26 Mar 2013
What is the actual shape of the pre-defined disk filter in MATLAB? Obviously it can't be exactly circular but what shape would it have with say a radius of 5. For example, the center row I'm guessing would have 9 pixels including the pixel of interest but I'm not sure... What about the other rows? Thanks.

Accepted Answer

Image Analyst
Image Analyst on 26 Mar 2013
Just type it out and see:
>>theFilter = fspecial('disk', 5)
  2 Comments
B
B on 26 Mar 2013
Thanks alot. How is the weighting determined? I was under the impression that each pixel was evenly weighted.
Image Analyst
Image Analyst on 26 Mar 2013
Good question. I would tend to agree with you. The values in the center are the same but the values at the edge of the disk are somewhat different. I would guess it has something to do with the shape of the jaggies at the outer boundary. You can make them all the same if you want, then pass it into conv2() to do a averaging filter with uniform weights.
out = out > 0.5*max(out(:)); % Threshold.
out = out / sum(out(:)); % Normalize.
filteredImage = conv2(double(inputImage), out, 'same');

Sign in to comment.

More Answers (0)

Community Treasure Hunt

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

Start Hunting!