Skip to content

Latest commit

 

History

History
81 lines (78 loc) · 1.89 KB

video-frame-quality.md

File metadata and controls

81 lines (78 loc) · 1.89 KB
layout title description keywords needGenerateH3Content needAutoGenerateSidebar noTitleIndex breadcrumbText codeAutoHeight
default-layout
VideoFrameQuality - Dynamsoft Camera Enhancer Enumerations
The enumeration VideoFrameQuality of Dynamsoft Camera Enhancer describes the quality of video frames.
Video frame quality
true
true
true
VideoFrameQuality
true

Enumeration VideoFrameQuality

VideoFrameQuality describes the quality of video frames.

>- JavaScript >- Android >- Objective-C >- Swift >- C++ > > ```javascript enum EnumVideoFrameQuality { /**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 @Retention(RetentionPolicy.CLASS) public @interface EnumVideoFrameQuality { /**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, DSVideoFrameQuality) { /**The frame quality is measured to be high.*/ VideoFrameQualityHigh, /**The frame quality is measured to be low.*/ VideoFrameQualityLow, /**The frame quality is unknown.*/ VideoFrameQualityUnknown }; ``` > ```swift public enum VideoFrameQuality : 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 VideoFrameQuality { /**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 } VideoFrameQuality; ```