loading

Midpoint Filter

The Midpoint filter blurs the image by replacing each pixel with the average of the highest pixel and the lowest pixel (with respect to intensity) within the specified windowsize.

For example, given the grayscale 3x3 pixel neighborhood;

22 77 48
150 77 158
0 77 219

The center pixel would be changed from 77 to 109 as it is the midpoint between the brightest pixel 219 and the darkest pixel 0 within the current window.

Midpoint = (darkest+lightest)/2

Interface

Instructions

1. Select the window size of the midpoint filter

Example

SourceMidpoint Filter

See Also


Min Filter
Max Filter


 New Post 

Mid Related Forum PostsLast postPostsViews
None