Dev Center
Swift
Objective-C
Table of contents

EnumDeblurMode

  • Android
  • Objective-C
  • Swift
public class EnumDeblurMode {
    public static final int DM_SKIP = 0;
    public static final int DM_DIRECT_BINARIZATION = 1;
    public static final int DM_THRESHOLD_BINARIZATION = 2;
    public static final int DM_GRAYE_EQULIZATION = 4;
    public static final int DM_SMOOTHING = 8;
    public static final int DM_MORPHING = 16;
    public static final int DM_DEEP_ANALYSIS = 32;
    public static final int DM_SHARPENING = 64;
    public static final int DM_BASED_ON_LOC_BIN = 128;
    public static final int DM_SHARPENING_SMOOTHING = 256;
}
typedef NS_ENUM(NSInteger,EnumDeblurMode)
{
    /**Performs deblur process using the direct binarization algorithm.*/
    EnumDeblurModeDirectBinarization = 0x01,
    /**Performs deblur process using the threshold binarization algorithm.*/
    EnumDeblurModeThresholdBinarization = 0x02,
    /**Performs deblur process using the gray equalization algorithm.*/
    EnumDeblurModeGrayEqualization = 0x04,
    /**Performs deblur process using the smoothing algorithm.*/
    EnumDeblurModeSmoothing = 0x08,
    /**Performs deblur process using the morphing algorithm.*/
    EnumDeblurModeMorphing = 0x10,
    /**Performs deblur process using the deep analysis algorithm.*/
    EnumDeblurModeDeepAnalysis = 0x20,
    /**Performs deblur process using the sharpening algorithm.*/
    EnumDeblurModeSharpening = 0x40,
    /**Performs deblur process based on the binary image from the localization process.*/
    EnumDeblurModeBasedOnLocBin = 0x80,
    /**Performs deblur process using the sharpening and smoothing algorithm.*/
    EnumDeblurModeSharpeningSmoothing = 0x100,
    /**Skips the deblur process.*/
    EnumDeblurModeSkip = 0x00
};
public enum EnumDeblurMode : Int{
    /**Performs deblur process using the direct binarization algorithm.*/
    directBinarization = 0x01
    /**Performs deblur process using the threshold binarization algorithm.*/
    thresholdBinarization = 0x02
    /**Performs deblur process using the gray equalization algorithm.*/
    grayEqualization = 0x04
    /**Performs deblur process using the smoothing algorithm.*/
    smoothing = 0x08
    /**Performs deblur process using the morphing algorithm.*/
    morphing = 0x10
    /**Performs deblur process using the deep analysis algorithm.*/
    deepAnalysis = 0x20
    /**Performs deblur process using the sharpening algorithm.*/
    sharpening = 0x40
    /**Performs deblur process based on the binary image from the localization process.*/
    basedOnLocBin = 0x80
    /**Performs deblur process using the sharpening and smoothing algorithm.*/
    sharpeningSmoothing = 0x100
    /**Skips the deblur process.*/
    skip = 0x00
}

This page is compatible for:

Version 7.5.0

Is this page helpful?

YesYes NoNo

latest version

    • Latest version (10.2.10)
    • Version 10.x
      • Version 10.0.21
      • Version 10.0.20
    • Version 9.x
      • Version 9.6.20
      • Version 9.6.11
      • Version 9.6.10
      • Version 9.6.0
      • Version 9.4.0
      • Version 9.2.13
      • Version 9.2.11
      • Version 9.2.10
      • Version 9.0.2
      • Version 9.0.1
      • Version 9.0.0
    • Version 8.x
      • Version 8.9.3
      • Version 8.9.1
      • Version 8.9.0
      • Version 8.8.0
      • Version 8.6.0
      • Version 8.4.0
      • Version 8.2.1
      • Version 8.2.0
      • Version 8.1.2
      • Version 8.1.0
      • Version 8.0.0
    • Version 7.x
      • Version 7.6.0
      • Version 7.5.0
    Change +