ImageGear23.Core Assembly > ImageGear.Processing Namespace > ImGearRasterProcessing Class > Smooth Method : Smooth(ImGearRasterPage,Int32,ImGearChannelRange) Method |
'Declaration Public Overloads Shared Sub Smooth( _ ByVal page As ImGearRasterPage, _ ByVal factor As Integer, _ ByVal channels As ImGearChannelRange _ )
'Usage Dim page As ImGearRasterPage Dim factor As Integer Dim channels As ImGearChannelRange ImGearRasterProcessing.Smooth(page, factor, channels)
public static void Smooth( ImGearRasterPage page, int factor, ImGearChannelRange channels )
public: static void Smooth( ImGearRasterPage* page, int factor, ImGearChannelRange channels )
public: static void Smooth( ImGearRasterPage^ page, int factor, ImGearChannelRange channels )
Can be applied only to the raster pages with standard (non Run-Ends) DIB.
// Smooth the first channel of an image by a factor of 3. ImGearRasterProcessing.Smooth(igRasterPage, 3, new ImGearChannelRange(0,1));
' Smooth the first channel of an image by a factor of 3. ImGearRasterProcessing.Smooth(igRasterPage, 3, New ImGearChannelRange(0, 1))