Documentation
Table of contents

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

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

  • Latest version
  • Version 2.x
    • Version 2.2.30
    • Version 2.2.20
    • Version 2.2.10
    • Version 2.2.0
    • Version 2.0.30
    • Version 2.0.20
    • Version 2.0.10
    • Version 2.0.0
Change +
© 2003–2024 Dynamsoft. All rights reserved.
Privacy Statement / Site Map / Home / Purchase / Support