Filter löschen
Filter löschen

Fspecial Disk Filter Shape

1 Ansicht (letzte 30 Tage)
B
B am 26 Mär. 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.

Akzeptierte Antwort

Image Analyst
Image Analyst am 26 Mär. 2013
Just type it out and see:
>>theFilter = fspecial('disk', 5)
  2 Kommentare
B
B am 26 Mär. 2013
Thanks alot. How is the weighting determined? I was under the impression that each pixel was evenly weighted.
Image Analyst
Image Analyst am 26 Mär. 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');

Melden Sie sich an, um zu kommentieren.

Weitere Antworten (0)

Community Treasure Hunt

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

Start Hunting!

Translated by