Image Processing in C#: Part 9 - Applying a Mean Removal
Another type of sharpening effect is mean removal. It works similarly to the standard sharpening, except it subtracts values from all the surrounding pixels evenly.
The grid which we used for this effect is as follows
-1 | -1 | -1 |
-1 | 11 | -1 |
-1 | -1 | -1 |
This gives a much more noticeable sharpening effect on the image.
The full source used in the series is available from https://github.com/sjmeunier/image-processor.
Originally posted on my old blog, Smoky Cogs, on 19 Nov 2009