Web Demos

BARCODE READER SDK DEMO

Explore the flexibe barcode reading settings to optimize for your specific usage scenario.

WEB TWAIN SDK DEMO

Try the most popular web scanner features: scan images, import local images and PDF files, edit, save to local, upload to database, and etc.

BARCODE READER JAVASCRIPT DEMO

Transform any camera-equipped devices into real-time, browser-based barcode and QR code scanners.

MRZ SCANNER WEB DEMO

Detects the machine-readable zone of a passport, scans the text, and parses into human-readable data.

APP STORE DEMOS

BARCODE READER SDK FOR IOS

BARCODE READER SDK FOR ANDROID

VIEW MORE DEMOS >
Resource Base
Table of contents

EnumEnhancerFeatures

The enumeration that indicates the advanced features of Dynamsoft Camera Enhancer.

  • Frame Filter: The frame sharpness filter feature of DCE. By enabling this feature, the low-quality frame will be recognized and discarded automatically.
  • Sensor Control: The sensor filter feature of DCE. By enabling this feature, the frames will be discarded automatically while the device is shaking.
  • Enhanced Focus: The enhanced focus feature. DCE will support the camera in triggering auto-focus.
  • Fast Mode: The fast mode of DCE. By enabling the fast mode, the frames will be cropped to speed up the following processing.
  • Auto Zoom: The auto-zoom feature of DCE. By enabling this feature, the camera will automatically zoom in to the interest area.
  • Smart Torch: Add a smart torch on the UI. The torch will be hided when the environment brightness is high and displayed when the brightness is low.
  • Android
  • Objective-C
  • Swift
public class EnumEnhancerFeatures {
   // The frame sharpness filter feature.
   public static final int EF_FRAME_FILTER = 1;
   // The sensor filter feature.
   public static final int EF_SENSOR_CONTROL = 2;
   // The enhanced focus feature.
   public static final int EF_ENHANCED_FOCUS = 4;
   // The fast mode of DCE.
   public static final int EF_FAST_MODE = 8;
   // The auto-zoom feature.
   public static final int EF_AUTO_ZOOM = 16;
   // Add a smart torch on the UI.
   public static final int EF_SMART_TORCH = 32;
   // The combined value of all the features.
   public static final int EF_ALL = 63;
}
typedef NS_ENUM(NSInteger, EnumEnhancerFeatures)
{
   /** The frame sharpness filter feature. */
   EnumFRAME_FILTER = 0X01,
   /** The sensor filter feature. */
   EnumSENSOR_CONTROL = 0X02,
   /** The enhanced focus feature. */
   EnumENHANCED_FOCUS = 0X04,
   /** The fast mode of DCE. */
   EnumFAST_MODE = 0X08,
   /** The auto-zoom feature. */
   EnumAUTO_ZOOM = 0X10,
   /** Add a smart torch on the UI. */
   EnumSMART_TORCH = 0X20,
   /** The combined value of all the features. */
   EnumALL = 0X3F
};
public enum EnumEnhancerFeatures : Int{
   /** The frame sharpness filter feature. */
   EnumFRAME_FILTER = 0X01
   /** The sensor filter feature. */
   EnumSENSOR_CONTROL = 0X02
   /** The enhanced focus feature. */
   EnumENHANCED_FOCUS = 0X04
   /** The fast mode of DCE. */
   EnumFAST_MODE = 0X08
   /** The auto-zoom feature. */
   EnumAUTO_ZOOM = 0X10
   /** Add a smart torch on the UI. */
   EnumSMART_TORCH = 0X20
   /** The combined value of all the features. */
   EnumALL = 0X3F
}

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

  • Latest version
  • Version 3.0.1
  • Version 3.0.0
  • Version 2.3.5
  • Version 2.3.2
  • Version 2.3.1
  • Version 2.3.0
  • Version 2.1.4
  • Version 2.1.3
  • Version 2.1.0
  • Version 2.0.0
  • Version 1.0.3
  • Version 1.0.1
  • Version 1.0.0
Change +
© 2003–2023 Dynamsoft. All rights reserved.
Privacy Statement / Site Map / Home / Purchase / Support