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).
- C++
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;