I'm running into an issue running the Sfm and MVS portions of the pipeline. The initial steps clean_data, crop_image, derive_approx, choose_subset, colmap_sfm_persepctive' all run to completion successfully on the explorer` dataset.
Once the reparam_depth portion of the pipeline initializes it immediately fails on line 99 (reparm_depth.py)
min_z_values = np.percentile(z_values, 1) - margin
Looks like this is failing because my z_values list is empty which is due to the fact that thepoints3D.txt in my sparse output folder doesn't contain any data. It seems that this is supposed to be populated as part of the colmap process but for some reason no data is being written.
Has anyone experienced this problem or is there possibly a step that I'm missing?
I'm running into an issue running the Sfm and MVS portions of the pipeline. The initial steps
clean_data, crop_image, derive_approx, choose_subset, colmap_sfm_persepctive' all run to completion successfully on theexplorer` dataset.Once the reparam_depth portion of the pipeline initializes it immediately fails on line 99 (reparm_depth.py)
min_z_values = np.percentile(z_values, 1) - marginLooks like this is failing because my
z_valueslist is empty which is due to the fact that thepoints3D.txtin my sparse output folder doesn't contain any data. It seems that this is supposed to be populated as part of the colmap process but for some reason no data is being written.Has anyone experienced this problem or is there possibly a step that I'm missing?