Like the definition of median filter, I can define "maximum filter" as for a local window

e.g. dst(x,y) = max(3x3 local window pixels)

But I cannot find such a filter in opencv, the closest one is "dilate" function

Then I use the default configuration of "dilate" function, but the result is incorrect compare to my brute force implementation of the maximum filter.

I found that for 3x3 case, the equivalent dilate configuration is to use a 1x1 rectangular structure element, that is

dilate(src, dst, getStructuringElement(MORPH_RECT, Size(1,1)))

My questions are:

  1. It seemed counter-intuitive for me that I thought a structure element is equivalent to a local window. But now the local window's size is only 1x1 pixel?

  2. What if my maximum filter's local window expands(e.g. 5x5, 7x7)? Is there any relationship between the maximum filter and dilation filter?

link|improve this question

50% accept rate
After this question, I found my logic fault in my code...the definition of dilate/max filter is identical – Bossliaw Jun 16 '11 at 12:43
feedback

1 Answer

up vote 1 down vote accepted

An implementation example in Mathematica:

enter image description here

But Dilation[ ] also accepts a structuring kernel:

enter image description here

link|improve this answer
Therefore, your case suggested that Dilation[img, 2] != MaxFilter[img, 2] ? – Bossliaw Apr 18 '11 at 18:36
@Bossliaw Nope. AFAIK, dilation is usually a generalization of MaxFilter because you can specify a kernel – belisarius Apr 18 '11 at 19:06
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.