Documentation
Table of contents

Enumeration TransformMatrixType

TransformMatrixType describes the transform matrix types.

  • JavaScript
  • Android
  • Objective-C
  • Swift
  • C++
enum EnumTransformMatrixType {
    /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/
    TMT_LOCAL_TO_ORIGINAL_IMAGE,
    /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/
    TMT_ORIGINAL_TO_LOCAL_IMAGE
}
public @interface EnumTransformMatrixType {
    /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/
    int TMT_LOCAL_TO_ORIGINAL_IMAGE = 0;
    /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/
    int TMT_ORIGINAL_TO_LOCAL_IMAGE = 1;
    /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/
    int TMT_ROTATED_TO_ORIGINAL_IMAGE = 2;
    /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/
    int TMT_ORIGINAL_TO_ROTATED_IMAGE = 3;
}
typedef NS_ENUM(NSInteger, DSTransformMatrixType)
{
    /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/
   DSTransformMatrixTypeLocalToOriginalImage = 0,
    /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/
   DSTransformMatrixTypeOriginalToLocalImage = 1,
    /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/
   DSTransformMatrixTypeRotatedToOriginalImage = 2,
    /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/
   DSTransformMatrixTypeOriginalToRotatedImage = 3
}NS_SWIFT_NAME(TransformMatrixType);
public enum TransformMatrixType : Int
{
    /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/
   localToOriginalImage = 0,
    /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/
   originalToLocalImage = 1,
    /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/
   rotatedToOriginalImage = 2,
    /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/
   originalToRotatedImage = 3
}
typedef enum TransformMatrixType
{
    /**Represents a transformation matrix that converts coordinates from the local image to the original image.*/
    TMT_LOCAL_TO_ORIGINAL_IMAGE,
    /**Represents a transformation matrix that converts coordinates from the original image to the local image.*/
    TMT_ORIGINAL_TO_LOCAL_IMAGE,
    /**Represents a transformation matrix that converts coordinates from the rotated image to the original image.*/
    TMT_ROTATED_TO_ORIGINAL_IMAGE,
    /**Represents a transformation matrix that converts coordinates from the original image to the rotated image.*/
    TMT_ORIGINAL_TO_ROTATED_IMAGE
} TransformMatrixType;

This page is compatible for:

Version 1.0

Is this page helpful?

YesYes NoNo

In this article:

latest version

    • Latest version (2.2.20)
    • Version 2.x
      • 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