hello, i try to make a script to export all my chunk in .ply with real coordinate.
The script run but i have no result. The new file is not created.
Someone can tell me where is my mistake? I'm not sure of my script. I use some sample to make this. (i'm beginner)
import PhotoScan
doc = PhotoScan.app.document
proj = PhotoScan.CoordinateSystem("EPSG::2154")
for chunk in doc.chunks:
filename = chunk.label
pathd = "D:\diag_preventif\rd9_2013\photoscan_carriere_rd9\export\cor_"+filename+".ply"
chunk.exportPoints(pathd, format='ply', dense=True, projection=proj)
And how can i use shift mode in this script ?
Thank's