VintaSoft Imaging .NET SDK 12.4: Documentation for .NET developer
Vintasoft.Imaging.ImageProcessing.Document Namespace / HalftoneRemovalCommand Class / CellSize Property
Syntax Remarks Requirements SeeAlso
In This Topic
    CellSize Property (HalftoneRemovalCommand)
    In This Topic
    Gets or sets the size, in pixels, of cells the image is divided into.
    Syntax
    'Declaration
    
    <DefaultValueAttribute(20)>
    <DescriptionAttribute("The size, in pixels, of cells the image is divided into.")>
    Public Property CellSize As System.Int32
    
    
    [DefaultValue(20)]
    [Description("The size, in pixels, of cells the image is divided into.")]
    public System.Int32 CellSize { get; set; }
    
    
    [DefaultValue(20)]
    [Description("The size, in pixels, of cells the image is divided into.")]
    public: __property System.Int32 get_CellSize();
    public: __property void set_CellSize(
    System.Int32 value
    );
    [DefaultValue(20)]
    [Description("The size, in pixels, of cells the image is divided into.")]
    public:
    property System.Int32 CellSize { System.Int32 get(); void set(System.Int32 value); }

    Property Value

    Valid values are from 10 to 500. Default value is 20.
    Remarks

    The cell is an image region that contains or does not contain a halftone.

    Halftone cell is the cell that contains a halftone.

    Halftone region is composed from adjacent halftone cells.

    The smaller is cell size the better is accuracy of recognized halftone regions contours but the slower is recognition.

    Requirements

    Target Platforms: .NET 8; .NET 7; .NET 6; .NET Framework 4.8, 4.7, 4.6, 4.5, 4.0, 3.5

    See Also