Skip to content

Latest commit

 

History

History
80 lines (77 loc) · 1.78 KB

video-frame-quality-v3.0.3.md

File metadata and controls

80 lines (77 loc) · 1.78 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex breadcrumbText codeAutoHeight
default-layout
FrameQuality - Dynamsoft Camera EnhancerEnumerations
The enumeration FrameQuality of Dynamsoft Camera Enhancerdescribes the quality of video frames.
Video frame quality
true
true
true
FrameQuality
true

Enumeration FrameQuality

FrameQuality describes the quality of video frames.

>- JavaScript >- Android >- Objective-C >- Swift >- C++ > > ```javascript enum EnumFrameQuality { /**The frame quality is measured to be high.*/ VFQ_HIGH = 0, /**The frame quality is measured to be low.*/ VFQ_LOW = 1, /**The frame quality is unknown.*/ VFQ_UNKNOWN = 2 } ``` > ```java public class EnumFrameQuality { /**The frame quality is measured to be high.*/ public static final int VFQ_HIGH = 0; /**The frame quality is measured to be low.*/ public static final int VFQ_LOW = 1; /**The frame quality is unknown.*/ public static final int VFQ_UNKNOWN = 2; } ``` > ```objc typedef NS_ENUM(NSInteger, DSFrameQuality) { /**The frame quality is measured to be high.*/ FrameQualityHigh, /**The frame quality is measured to be low.*/ FrameQualityLow, /**The frame quality is unknown.*/ FrameQualityUnknown }; ``` > ```swift public enum FrameQuality : Int { /**The frame quality is measured to be high.*/ high, /**The frame quality is measured to be low.*/ low, /**The frame quality is unknown.*/ unknown } ``` > ```cpp typedef enum FrameQuality { /**The frame quality is measured to be high.*/ VFQ_HIGH, /**The frame quality is measured to be low.*/ VFQ_LOW, /**The frame quality is unknown.*/ VFQ_UNKNOWN } FrameQuality; ```