Table of contents
Swift
Objective-C

This documentation is deprecated. It applies only to legacy version 9.x of Barcode Reader and must not be used for new development.

Please refer to the latest documentation and Migration Guide, which supersede this content.

EnumTextFilterMode

  • Android
  • Objective-C
  • Swift
public class EnumTextFilterMode {
    public static final int TFM_AUTO = 1;
    public static final int TFM_GENERAL_CONTOUR = 2;
    public static final int TFM_SKIP = 0;
}
typedef NS_ENUM(NSInteger, EnumTextFilterMode)
{
    /** Not supported yet. */
    EnumTextFilterModeAuto = 0x01,
    /** Filters text using the general algorithm based on contour. Check @ref TFM for available argument settings.*/
    EnumTextFilterModeGeneralContour = 0x02,
    /** Skips text filtering. */
    EnumTextFilterModeSkip = 0x00
};
public enum EnumTextFilterMode : Int{
    /** Not supported yet. */
    auto = 0x01
    /** Filters text using the general algorithm based on contour. Check @ref TFM for available argument settings.*/
    generalContour = 0x02
    /** Skips text filtering. */
    skip = 0x00
}

This page is compatible for:

Is this page helpful?

YesYes NoNo