Label | Explanation | Data Type |
Input Mosaic Dataset
| The mosaic dataset that contains the source imagery from which the tie points will be created. | Mosaic Dataset; Mosaic Layer |
Input Control Points
| The input control point set that contains a list of ground control point features and at least one initial tie point for each ground control point. | File; Feature Class; Feature Layer; String |
Output Control Point Table
| The output control point features that contain ground control points. | Feature Class |
Similarity
(Optional) | Specifies the similarity level that will be used for matching tie points.
| String |
Summary
Creates matching tie points for a given ground control point and initial tie point in one of the overlapping images.
Usage
If the input control point set doesn't have a ground control point, the tool will fail.
If the input control point set has ground control points but no initial tie point, the tool will fail.
If no associated tie points are found, the input control point set remains unchanged, and a warning message appears that states no new tie points were found.
An input control point set can be a JSON string object that is a list of points as shown below.
Input control point sets
[ { "poinId": <id>, "x": "y": "z": "xyAccuracy": "zAccuracy": "spatialReference":{<spatialReference>}, // default WGS84 "imagePointSpatialReference": {}, // default ICS "imagePoints": [ {"imageId": "x": "y": }, … ] } ]
Parameters
arcpy.management.MatchControlPoints(in_mosaic_dataset, in_control_points, out_control_points, {similarity})
Name | Explanation | Data Type |
in_mosaic_dataset | The mosaic dataset that contains the source imagery from which the tie points will be created. | Mosaic Dataset; Mosaic Layer |
in_control_points | The input control point set that contains a list of ground control point features and at least one initial tie point for each ground control point. | File; Feature Class; Feature Layer; String |
out_control_points | The output control point features that contain ground control points. | Feature Class |
similarity (Optional) | Specifies the similarity level that will be used for matching tie points.
| String |