Hello kot,Can you please provide more information describing the situation with the pairs argument?It is an optional argument. If you define it, Metashape will try to match only specified pairs.
pairs_keys = [(chunk.cameras[i-1].key, chunk.cameras[i].key) for i in range(1, len(chunk.cameras), 2)]chunk.matchPhotos(pairs=pairs_keys)---------------------------------------------------------------------------ValueError Traceback (most recent call last)<ipython-input-25-f6141baa8b25> in <module>----> 1 chunk.matchPhotos(pairs=pairs_keys)ValueError: Invalid argument value: pairs
task = Metashape.Tasks.MatchPhotos()task.pairs = pairs_keystask.apply(chunk)