IMcSpatialCalibUnCalibratePoints Method
|
|
Convert calibrated point coordinates into pixel-based point coordinates.
Namespace:
MediaCy.IQL.Calibrations
Assembly:
MediaCy.IQL.Calibrations (in MediaCy.IQL.Calibrations.dll) Version: 10.0.6912.0
SyntaxSub UnCalibratePoints (
InPoints As Object,
<OutAttribute> ByRef pOutPoints As Object,
Optional NumPoints As Integer = 0
)
Parameters
- InPoints
- Type: SystemObject
Array of float, double, SINGLEPOINT or DOUBLEPOINT
containing calibrated point coordinates . - pOutPoints
- Type: SystemObject
Empty VARIANT, or an array of point, short, long, float, double,
LONGPOINT, SINGLEPOINT, or DOUBLEPOINT receiving the pixel-based point coordinates. - NumPoints (Optional)
- Type: SystemInt32
The number of points to convert, if null all the points in InPoints will be converted if possible.
RemarksThis 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. |
See Also