Exemple #1
0
 /// <summary>
 /// Initializes a new instance of the <see cref="GaussianSharpenProcessor"/> class.
 /// </summary>
 /// <param name="sigma">The 'sigma' value representing the weight of the blur.</param>
 public GaussianSharpenProcessor(float sigma)
     : this(sigma, ConvolutionProcessorHelpers.GetDefaultGaussianRadius(sigma))
 {
 }
 /// <summary>
 /// Initializes a new instance of the <see cref="GaussianBlurProcessor"/> class.
 /// </summary>
 public GaussianBlurProcessor()
     : this(DefaultSigma, ConvolutionProcessorHelpers.GetDefaultGaussianRadius(DefaultSigma))
 {
 }