Description
Convert calibrated point coordinates into pixel-based point coordinates.
-
Return Type
-
None
-
Syntax
-
object.UnCalibratePoints InPoints, pOutPoints, [NumPoints]
The UnCalibratePoints Method syntax has these parts: |
| object | An expression evaluating to an object of type McSpatialCalib. | | InPoints | Required. A Variant value. Array of float, double, SINGLEPOINT or DOUBLEPOINT containing calibrated point coordinates .
| | pOutPoints | Required. A Variant value. Empty VARIANT, or an array of point, short, long, float, double, LONGPOINT, SINGLEPOINT, or DOUBLEPOINT receiving the pixel-based point coordinates.
| | NumPoints | Optional. A Long value. The number of points to convert, if null all the points in InPoints will be converted if possible.
| Remarks
This is the opposite conversion to CalibratePoints.
The UnCalibrateFloatPoints method will un-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 SINGLEPOINT, and DOUBLEPOINT are also supported. |
|