1
Feature Requests / Re: HEIC image format
« on: September 07, 2025, 03:58:18 PM »
+1
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
2025-02-22 07:37:58 ImportReference: path = C:\Temp\xAngle\myriam\reference.csv, columns = nxyz, delimiter = ,, skip_rows = 2
2025-02-22 07:37:58 Finished processing in 0.002 sec (exit code 1)
# This python script will import a camera reference csv file into Metashape
# By Jeffrey Ian Wilson for the 3D Scanning Masterclass (www.jeffreyianwilson.com)
import Metashape,sys
doc = Metashape.app.document
chunk = doc.chunk
# Variables
referencePath = str(sys.argv[1]) # "C:\\Temp\\xAngle\\myriam\\reference.csv"
# Import Camera Reference
chunk.importReference(path = referencePath, format = Metashape.ReferenceFormatCSV, skip_rows=2, columns=" nxyz", delimiter=",")
for camera in chunk.cameras:
camera.reference.location_accuracy = Metashape.Vector([0.01,0.01,0.01])
camera.reference.rotation_accuracy = Metashape.Vector([0.1,0.1,0.1])
chunk.updateTransform()
Unsupported datum transformation error when importing Navvis VLX3 e57 file. No error in version 2.1.3
Jeff