google / nerfies

This is the code for Deformable Neural Radiance Fields, a.k.a. Nerfies.
https://nerfies.github.io
Apache License 2.0
1.59k stars 215 forks source link

data process #76

Open deligenters opened 8 months ago

deligenters commented 8 months ago

i run the on the colab,in Reconstruction.

@title Reconstruction.

@markdown Run structure-from-motion to compute camera parameters.

refine_principal_point = True #@param {type:"boolean"} min_num_matches = 32# @param {type: 'number'} filter_max_reproj_error = 2 # @param {type: 'number'} tri_complete_max_reproj_error = 2 # @param {type: 'number'}

!colmap mapper \ --Mapper.ba_refine_principal_point {int(refine_principal_point)} \ --Mapper.filter_max_reproj_error $filter_max_reproj_error \ --Mapper.tri_complete_max_reproj_error $tri_complete_max_reproj_error \ --Mapper.min_num_matches $min_num_matches \ --database_path "{str(colmap_db_path)}" \ --image_path "{str(colmap_rgb_dir)}" \ --export_path "{str(colmap_out_path)}"

the is a bug: ERROR: Failed to parse options - unrecognised option '--export_path'.

dlazares commented 7 months ago

change --export_path to --output_path.