Sharpen(ImGearRasterPage,Int32,ImGearChannelRange) Method
Sharpens an image according to the specified sharpen factor.
Parameters
- page
- Image to sharpen.
- factor
- Sharpen factor. Allowed values are from 1 to 7 inclusive.
For any factor beyond this range the method will do nothing.
The larger this factor, the sharper image will become.
- channels
- Channel range to sharpen.
// Sharpen the first channel of an image by a factor of 3.
ImGearRasterProcessing.Sharpen(igRasterPage, 3, new ImGearChannelRange(0, 1));
' Sharpen the first channel of an image by a factor of 3.
ImGearRasterProcessing.Sharpen(igRasterPage, 3, New ImGearChannelRange(0, 1))