Enumeration ImageTagType
ImageTagType
categorizes images based on their source, distinguishing between images extracted from video streams (video frame) and those loaded from static files (file image).
- JavaScript
- Android
- Objective-C
- Swift
- C++
- C#
- Python
enum EnumImageTagType { /**Represents an image that has been sourced from a static file.*/ ITT_FILE_IMAGE = 0, /**Indicates that the image is a frame extracted from a video stream.*/ ITT_VIDEO_FRAME = 1 }
@Retention(RetentionPolicy.CLASS) public @interface EnumImageTagType { public static final int ITT_FILE_IMAGE = 0; public static final int ITT_VIDEO_FRAME = 1; }
typedef NS_ENUM(NSInteger, DSImageTagType) { /**The image tag is a DSFileImageTag.*/ DSImageTagTypeFileImage = 0, /**The image tag is a DSVideoFrameTag.*/ DSImageTagTypeVideoFrame = 1, };
public enum ImageTagType : Int { /**The image tag is a DSFileImageTag.*/ fileImage = 0, /**The image tag is a DSVideoFrameTag.*/ videoFrame = 1, }
typedef enum ImageTagType { /**Represents an image that has been sourced from a static file.*/ ITT_FILE_IMAGE, /**Indicates that the image is a frame extracted from a video stream.*/ ITT_VIDEO_FRAME } ImageTagType;
public enum EnumImageTagType { /**The image is a file image.*/ ITT_FILE_IMAGE, /**The image is a video frame.*/ ITT_VIDEO_FRAME }
class EnumImageTagType(IntEnum): #The image is a file image. ITT_FILE_IMAGE #The image is a video frame. ITT_VIDEO_FRAME