1
Python and Java API / How to combine alignment of the laser scans and images ?
« on: August 10, 2023, 01:55:53 PM »
Hello,
I tried to combine alignment of the laser scans and images manually by the following link with the topic "Processing terrestrial laser scans and images":
https://agisoft.freshdesk.com/support/solutions/articles/31000168474-terrestrial-laser-scans-processing-in-metashape-2-0-0
But I don't know how to combine alignment of the laser scans and images by python API while I cannot find the Reset Alignment command for laser scans in python API.
I tried to Reset Alignment manually and align images by the following command, but it doesn't work.
Hong
I tried to combine alignment of the laser scans and images manually by the following link with the topic "Processing terrestrial laser scans and images":
https://agisoft.freshdesk.com/support/solutions/articles/31000168474-terrestrial-laser-scans-processing-in-metashape-2-0-0
But I don't know how to combine alignment of the laser scans and images by python API while I cannot find the Reset Alignment command for laser scans in python API.
I tried to Reset Alignment manually and align images by the following command, but it doesn't work.
Code: [Select]
chunk.matchPhotos(downscale=1,
keypoint_limit=80000,
tiepoint_limit=6000,
generic_preselection=False,
reference_preselection=False,
filter_stationary_points=True,
reset_matches=True,
filter_mask=True)
doc.save()
chunk.alignCameras(reset_alignment=True)
doc.save()
Hong