ImageGear .NET v25.2 - Updated
ImageGear.OCR Assembly / ImageGear.OCR Namespace / ImGearOCRFilter Enumeration




In This Topic
    ImGearOCRFilter Enumeration
    In This Topic
    Identifies character set filters.
    Syntax
    'Declaration
     
    <FlagsAttribute()>
    Public Enum ImGearOCRFilter 
       Inherits System.Enum
    'Usage
     
    Dim instance As ImGearOCRFilter
    [Flags()]
    public enum ImGearOCRFilter : System.Enum 
    [Flags()]
    __value public enum ImGearOCRFilter : public System.Enum 
    [Flags()]
    public enum class ImGearOCRFilter : public System.Enum 
    Members
    MemberValueDescription
    ALL159Pre-defined combined filter. Since all elements are enabled, there is no filtering.
    ALPHA134Pre-definedcombined filter. Recognition of upper and lowercase letters only.
    DEFAULT0Used to have the zone handled globally. Do not combine this with any other filter.
    DIGIT1Disjunct filter. Recognition of numerals only. E.g.: "3" (Digit Three).
    LOWERCASE4Disjunct filter. Recognition of lowercase letters only including accented ones. E.g.: "a" (Lowercase a).
    MISCELLANEOUS16Disjunct filter. Recognition of other miscellaneous characters only. E.g.: "+" (Plus sign).
    NUMBERS33Pre-defined combined filter. Recognition of the digits, plus the FilterPlus characters specified by the ImGearRecRecognitionSettings.FilterPlus property.
    PLUS32Special, combinable filter. Enables the use of the FilterPlus characters specified by the ImGearRecRecognitionSettings.FilterPlus property. The FilterPlus characters are added after any filtering.
    PUNCTUATION8Disjunct filter. Recognition of punctuation signs only. E.g.: "!" (Exclamation Mark).
    SPACE128Disjunct filter. Recognition of white spaces.
    UPPERCASE2Disjunct filter. Recognition of uppercase letters only, including accented ones. E.g.: "A" (Capital A).
    USER_DICT64Special, combinable filter. Recognition of characters from the user dictionary section assigned to the zone.
    Inheritance Hierarchy

    System.Object
       System.ValueType
          System.Enum
             ImageGear.OCR.ImGearOCRFilter

    See Also