Description
Convert pixel point coordinates into calibrated point coordinates
-
Return Type
-
None
-
Syntax
-
object.CalibratePoints InPoints, pOutPoints, [NumPoints]
The CalibratePoints Method syntax has these parts: |
| object | An expression evaluating to an object of type McSpatialCalib. | | InPoints | Required. A Variant value. Array of points in pixel coordinates. Array can be of type LONGPOINT, SINGLEPOINT, DOUBLEPOINT, short, long, float, or double.
| | pOutPoints | Required. A Variant value. Array of float, double, SINGLEPOINT, DOUBLEPOINT, or empty VARIANT, receiving the calibrated values.
| | NumPoints | Optional. A Long value. Number of points to convert, if null all the points in InPoints will be converted if possible.
| Remarks
This function uses the calibration mapping to convert non-calibrated point locations into calibrated coordinates.
The CalibrateFloatPoints method will calibrate an array of Single type points in place. It should be used when possible, as it is substantially faster than this more-general method.
| Note: |
Scalar LONGPOINT, SINGLEPOINT, and DOUBLEPOINT are also supported. |
|