VisionInfoType2
Use this enumeration to indicate which Vision information types you want to check for in an image or remove from an image. Use bitwise-OR to combine two or more values in order to check for or remove multiple values with one function call. You can also use bitwise-AND between these values and the return value of imaqIsVisionInfoPresent2() to confirm the presence or absence of particular NI Vision information types.
Elements
Name | Value | Description |
---|---|---|
IMAQ_VISIONINFO_CALIBRATION | 0x01 | Used to indicate interaction with the Calibration information in an image. |
IMAQ_VISIONINFO_OVERLAY | 0x02 | Used to indicate interaction with the Overlay information in an image. |
IMAQ_VISIONINFO_GRAYTEMPLATE | 0x04 | Used to indicate interaction with the grayscale template information in an image. |
IMAQ_VISIONINFO_COLORTEMPLATE | 0x08 | Used to indicate interaction with the color template information in an image. |
IMAQ_VISIONINFO_GEOMETRICTEMPLATE | 0x10 | Used to indicate interaction with the geometric template information in an image. |
IMAQ_VISIONINFO_CUSTOMDATA | 0x20 | Used to indicate interaction with the binary or text Custom Data in an image. |
IMAQ_VISIONINFO_GOLDENTEMPLATE | 0x40 | Used to indicate interaction with the golden template information in an image. |
IMAQ_VISIONINFO_ALL | 0xFFFFFFFF | Removes, checks for, or indicates the presence of all types of extra information in an image. |