Hi,
when using networking for import cameras (ImportCameras,MatchPhotos, BuildPhotos) in a single batch, I get failed: Unexpected error when starting BuildPoints task. Code looks like:
# create import camera task (task0)
.
.
.
# create match photos task (task1)
.
.
.
# Create build Points task
task2 = PhotoScan.NetworkTask()
for c in doc.chunks:
task2.chunks.append(c.key) #task2.frames.append((c.key, 0))
task2.name = "BuildPoints"
task2.params['error'] = 10.0
task2.params['network_distribute'] = True #fine level task distribution key
# Create client
client = PhotoScan.NetworkClient()
client.connect(server_ip_address)
batch_id = client.createBatch('test_project.psx', [task0, task1, task2])
success = client.resumeBatch(batch_id)
Other two tasks finish without any error. Also, is it necessary to save PSX file after each task has been completed?