Hello!
As many users, I'm developing an script to automatically build a point cloud with different parameters.
(The twist is that I want to use CloudCompare in the loop

)
I've find out that if I want to use parameter inside the matchPhotos command, it has to be an integer.
For exemple:
matchAccuracy=8
...
chunk.matchPhotos(accuracy = matchAccuracy, generic_preselection=True, reference_preselection=False)
...
Is interpreted as:
MatchPhotos:
accuracy = Lowest, preselection = generic, keypoint limit = 40000, tiepoint limit = 4000, apply masks = 0, filter tie points = 0
But
matchAccuracy=5
...
chunk.matchPhotos(accuracy = matchAccuracy, generic_preselection=True, reference_preselection=False)
...
Becomes
MatchPhotos:
accuracy = 5, preselection = generic, keypoint limit = 40000, tiepoint limit = 4000, apply masks = 0, filter tie points = 0
My question is:
Can I find the corresepondance somwhere? Is it giving me more possibilities than 'lowest, low, medium, hight, highest?
How does it work exactly? And is it the same for buildDepthMaps and other commands?
Thank you!