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
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 }