ExportMisalignmentPoints
Returns point indexes and their misalignments.
Syntax:
$ExportMisalignmentPoints( noParametersJustAnyText )
Available Variables
| Variable | Type | Description |
|---|---|---|
index | UINT | Index of the point. |
misalignment | UINT | Misalignment value of the point. |
Example
$ExportMisalignmentPoints(
Index: $(index)
Misalignment: $(misalignment)
)ExportMisalignmentCameras
Returns camera misalignment information.
Syntax:
$ExportMisalignmentCameras( noParametersJustAnyText )
Available Variables
| Variable | Type | Description |
|---|---|---|
cameraSfmImage | UINT | Index of the image (camera). |
connectionCount | UINT | Number of connections associated with the image. |
Available Functions
Function available under the ExportMisalignmentCameras function.
ExportMisalignmentCameraConnections
Exports information about the misalignment of the camera connections.
Syntax:
$ExportMisalignmentCameraConnections( cameraSfmImage, anyText )
| Parameter | Type | Description |
|---|---|---|
cameraSfmImage | UINT | Index of the image (camera). |
Available Variables
| Variable | Type | Description |
|---|---|---|
neighborSfmImage | UINT | Index of the neighboring image. |
connectionStrength | UINT | Strength of the connection to the neighboring image. |
Example
$ExportMisalignmentCameras(
Image index: $(cameraSfmImage)
Connection count: $(connectionCount)
$ExportMisalignmentCameraConnections( 1,
Neighbor Image Index: $(neighborSfmImage)
Connection strength: $(connectionStrength)
)