←Select platform

WindowSize Property

Summary

Represents the size of the window needed to calculate the mean and variance of each pixel.

Syntax
C#
Objective-C
C++/CLI
Java
Python
public int WindowSize { get; set; } 
@property (nonatomic, assign) NSInteger windowSize; 
public int getWindowSize(); 
public void setWindowSize( 
   int intValue 
); 
public:  
   property Int32 WindowSize 
   { 
      Int32 get() 
      void set(Int32 value) 
   } 
WindowSize # get and set (SauvolaBinarizeCommand) 

Property Value

Interger value that represents the size of the window needed to apply the Sauvola equation. The valid range is from 2 to (ImWidth-2)/2.

Remarks

The default value is 7.

Example
C#
using Leadtools; 
using Leadtools.Codecs; 
using Leadtools.ImageProcessing; 
using Leadtools.ImageProcessing.Core; 
 
public void SauvolaBinarizeCommandExample() 
{ 
   // Load an image 
   RasterCodecs codecs = new RasterCodecs(); 
   codecs.ThrowExceptionsOnInvalidImages = true; 
 
   RasterImage image = codecs.Load(Path.Combine(LEAD_VARS.ImagesDir, "glare.jpg")); 
   string destFileName = Path.Combine(LEAD_VARS.ImagesDir, "BinarizedImage.bmp"); 
 
   // Prepare the command 
   SauvolaBinarizeCommand command = new SauvolaBinarizeCommand(); 
 
   command.KFactor = 0.15; 
   command.RFactor = 128; 
   command.WindowSize = 55; 
 
   command.Run(image); 
 
    // Save it to disk 
    codecs.Save(image, destFileName, RasterImageFormat.Bmp, 24); 
} 
 
static class LEAD_VARS 
{ 
   public const string ImagesDir = @"C:\LEADTOOLS22\Resources\Images"; 
} 
Requirements

Target Platforms

Help Version 22.0.2023.11.1
Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.

Leadtools.ImageProcessing.Core Assembly

Products | Support | Contact Us | Intellectual Property Notices
© 1991-2023 LEAD Technologies, Inc. All Rights Reserved.