Class GaussianBlurProcessor
Defines Gaussian blur by a (Sigma, Radius) pair.
Implements
Inherited Members
Namespace: SixLabors.ImageSharp.Processing.Processors.Convolution
Assembly: SixLabors.ImageSharp.dll
Syntax
public sealed class GaussianBlurProcessor : IImageProcessor
Constructors
| Improve this Doc View SourceGaussianBlurProcessor()
Initializes a new instance of the GaussianBlurProcessor class.
Declaration
public GaussianBlurProcessor()
GaussianBlurProcessor(Int32)
Initializes a new instance of the GaussianBlurProcessor class.
Declaration
public GaussianBlurProcessor(int radius)
Parameters
Type | Name | Description |
---|---|---|
Int32 | radius | The 'radius' value representing the size of the area to sample. |
GaussianBlurProcessor(Single)
Initializes a new instance of the GaussianBlurProcessor class.
Declaration
public GaussianBlurProcessor(float sigma)
Parameters
Type | Name | Description |
---|---|---|
Single | sigma | The 'sigma' value representing the weight of the blur. |
GaussianBlurProcessor(Single, Int32)
Initializes a new instance of the GaussianBlurProcessor class.
Declaration
public GaussianBlurProcessor(float sigma, int radius)
Parameters
Type | Name | Description |
---|---|---|
Single | sigma | The 'sigma' value representing the weight of the blur. |
Int32 | radius | The 'radius' value representing the size of the area to sample. This should be at least twice the sigma value. |
Fields
| Improve this Doc View SourceDefaultSigma
The default value for Sigma.
Declaration
public const float DefaultSigma = 3F
Field Value
Type | Description |
---|---|
Single |
Properties
| Improve this Doc View SourceRadius
Gets the radius defining the size of the area to sample.
Declaration
public int Radius { get; }
Property Value
Type | Description |
---|---|
Int32 |
Sigma
Gets the sigma value representing the weight of the blur
Declaration
public float Sigma { get; }
Property Value
Type | Description |
---|---|
Single |
Methods
| Improve this Doc View SourceCreatePixelSpecificProcessor<TPixel>(Configuration, Image<TPixel>, Rectangle)
Creates a pixel specific IImageProcessor<TPixel> that is capable of executing the processing algorithm on an Image<TPixel>.
Declaration
public IImageProcessor<TPixel> CreatePixelSpecificProcessor<TPixel>(Configuration configuration, Image<TPixel> source, Rectangle sourceRectangle)
where TPixel : struct, IPixel<TPixel>
Parameters
Type | Name | Description |
---|---|---|
Configuration | configuration | The configuration which allows altering default behaviour or extending the library. |
Image<TPixel> | source | The source image. Cannot be null. |
Rectangle | sourceRectangle | The Rectangle structure that specifies the portion of the image object to draw. |
Returns
Type | Description |
---|---|
IImageProcessor<TPixel> |
Type Parameters
Name | Description |
---|---|
TPixel | The pixel type. |