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).
@Retention(RetentionPolicy.CLASS)
public @interface EnumImageTagType {
//The image is a file image.
int ITT_FILE_IMAGE = 0;
//The image is a video frame.
int ITT_VIDEO_FRAME = 1;
}