Question: I’m using ClusterODM - Distributed Split/Merge for stitching large datasets.
These datasets are stored by individual flights (folder F_01, F_02, F_03, etc).
For each flight, the file names are reset. i.e. “/F_01/DSC00001.JPG”, “/F_02/DSC00001.JPG”, “/F_03/DSC00001.JPG”, etc…
So executing the cmd in PyODM, the file array will look something like this:
['/Path/F_01/DSC00001.JPG'', '/Path/F_01/DSC00001.JPG', '/Path/F_01/DSC00001.JPG',
'/Path/F_02/DSC00001.JPG', '/Path/F_02/DSC00002.JPG', '/Path/F_02/DSC00003.JPG',
'/Path/F_03/DSC00001.JPG', '/Path/F_03/DSC00002.JPG', '/Path/F_03/DSC00003.JPG']
Will this type of naming convention effect the process? Having identical file names even though the path is different?
Dean