Summary
Builds a stereo model of a mosaic dataset, based on a user-provided stereo pair.
A stereo model of a mosaic dataset is required for stereo feature collection and 3D point cloud generation. A stereo model, as one of the tables within a mosaic dataset, defines the stereo pairs. The stereo model stores the overlapping polygons, the corresponding image identifiers, and image IDs that compose each pair. The stereo model can be accessed from the context menu of a mosaic dataset.
Usage
The order of the stereo pair in the point cloud calculation is determined by user-defined thresholds for the overlap area, intersection angle, adjustment quality, GSD difference, and Omega/Phi quality.
If you want a specific pair to be used for point cloud generation, set a high value for this pair in the Use field of the stereo table. To open the stereo table, right-click the mosaic layer in the Table of Contents and click Open > Stereo.
Syntax
BuildStereoModel_management (in_mosaic_dataset, {minimum_angle}, {maximum_angle}, {minimum_overlap}, {maximum_diff_OP}, {maximum_diff_GSD})
Parameter | Explanation | Data Type |
in_mosaic_dataset | The mosaic dataset on which to build the stereo model. | Mosaic Dataset; Mosaic Layer |
minimum_angle (Optional) | The value, in degrees, that defines the minimum angle the stereo pair must meet. The default is 10. | Double |
maximum_angle (Optional) | The value, in degrees, that defines the maximum angle the stereo pair must meet. The default is 70. | Double |
minimum_overlap (Optional) | The percentage of the overlapping area over the whole image. The default is 0.5. | Double |
maximum_diff_OP (Optional) | The maximum threshold for the Omega/Phi difference, between the two image pairs. The Omega values and Phi values for the image pairs are compared. If the difference between either the two Omega or the two Phi values is above the threshold, the pairs will not be formatted as a stereo pair. | Double |
maximum_diff_GSD (Optional) | The threshold for the maximum ground sample distance (GSD) between two images in a pair. If the resolution ratio between the two images is greater than the threshold value, the pairs will not be built as a stereo pair. The default is 2. | Double |
Code sample
BuildStereoModel example 1 (Python window)
This is a Python sample for the BuildStereoModel tool.
import arcpy
arcpy.BuildStereoModel_datamanagement("c:/data/fgdb.gdb/md", 10, 70, 0.6)
Environments
Licensing information
- ArcGIS Desktop Basic: No
- ArcGIS Desktop Standard: No
- ArcGIS Desktop Advanced: Yes