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
{
int ITT_FILE_IMAGE = 0;
int ITT_VIDEO_FRAME = 1;
}