Re: Sharpening Filter
- From: Allan Lyckegaard <allanlyckegaard@xxxxxxxxx>
- Date: Thu, 23 Mar 2006 20:31:36 +0100
Hi
I do not know the name of this filter but for some reason it reminds me of the the kuwahara filter. The kuwahara filter splits the structuring element into 4 overlapping elements (NW, NE, SW, SE) like this:
123 12 23
456 -> 45 56
789
45 56
78 89
and computes the variance of each of the 4 elements. The filtered value of the center pixel 5 is then the mean of the element (NW, NE, SW, SE) with the smallest variance.
Kind regards
Allan Lyckegaard
thomas_m_richardson@xxxxxxxxx wrote:
A colleague has proposed the following sharpening filter to me:.
Use a 3x3 structuring element.
Compute the mean, min, and max on the structuring element.
The filtered result is
if (MEAN - MIN) > (MAX - MEAN) then
RESULT = MAX
else
RESULT = MIN
One could think of this as an adaptive erosion/dialation.
Does this filter have a common name? Is it well known? Is it similar to
any well known filters?
Thanks in advance, Tom
- References:
- Sharpening Filter
- From: thomas_m_richardson
- Sharpening Filter
- Prev by Date: Re: frequency domain manipulation
- Next by Date: Re: frequency domain manipulation
- Previous by thread: Sharpening Filter
- Next by thread: Re: Sharpening Filter
- Index(es):
Relevant Pages
|
|