Hi,
I am running python script. I am having some issue while I am trying to import .CSV (local coordinates of markers). Following script I am running
chunk = Metashape.app.document.chunk
path = "D:\\GCP.csv"
chunk.importReference(path, format = Metashape.ReferenceFormatCSV, delimiter="," columns="nxyz")
and I am getting this error
File "D:/File.py", line 102
chunk = Metashape.app.document.chunk
^
IndentationError: unindent does not match any outer indentation level
Error: unindent does not match any outer indentation level (D:/File.py, line 102)
This is my workflow sequence
# STEP 1 - Load Images
# STEP 2 - Align Images
# STEP 3 - Detect Markers
#STEP 4 - Importing CSV File
# STEP 5 - Optimize Cameras and Region Reset
Kindly advice
Regards