/**
 * Enumeration EnhancedFeatures indicates the advanced features of Dynamsoft Camera Enhancer.
 * */
export enum EnumEnhancedFeatures {
  /**
   * `Frame Filter`: The frame sharpness filter feature of DCE. By enabling this feature, the low-quality frame will be recognized and discarded automatically.
   * */
  EF_FRAME_FILTER = 1,

  /**`Sensor Control`: The sensor filter feature of DCE. By enabling this feature, the frames will be discarded automatically while the device is shaking.*/
  EF_SENSOR_CONTROL = 2,

  /**`Enhanced Focus`: The enhanced focus feature. DCE will support the camera in triggering auto-focus.*/
  EF_ENHANCED_FOCUS = 4,

  /**`Auto Zoom`: The auto-zoom feature of DCE. By enabling this feature, the camera will automatically zoom in to the interest area.*/
  EF_AUTO_ZOOM = 8,

  /**`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.*/
  EF_SMART_TORCH = 16,

  /**Enable all.*/
  EF_ALL = 31
}
