First Time Reaching Out for Help, have googled, and looked alot of post, but cant seem to figure it out, i am no computer expert, enough to poke around.
I am trying to process, 900+ images so i used the split function, which converged all the images, then aligned. I am now getting an error to finish the processing.
Any Help would be greatly apprecitated, as i expect to need to do a few of these larger data sets, as i fly for ag and anything over 30 acres gets to be alot of images.
Thanks
docker run -ti --rm -v C:\droneprojects\K807_31\7_31:/datasets/code opendronemap/odm --project-path /datasets --split 300 --split-overlap 100 --merge all
[INFO] Initializing OpenDroneMap app - Fri Aug 02 18:14:33 2019
[INFO] ==============
[INFO] build_overviews: False
[INFO] cameras: {}
[INFO] crop: 3
[INFO] debug: False
[INFO] dem_decimation: 1
[INFO] dem_euclidean_map: False
[INFO] dem_gapfill_steps: 3
[INFO] dem_resolution: 5
[INFO] depthmap_resolution: 640
[INFO] dsm: False
[INFO] dtm: False
[INFO] end_with: odm_orthophoto
[INFO] fast_orthophoto: False
[INFO] gcp: None
[INFO] ignore_gsd: False
[INFO] images: None
[INFO] matcher_distance: 0
[INFO] matcher_neighbors: 8
[INFO] max_concurrency: 6
[INFO] merge: all
[INFO] mesh_octree_depth: 9
[INFO] mesh_point_weight: 4
[INFO] mesh_samples: 1.0
[INFO] mesh_size: 100000
[INFO] min_num_features: 8000
[INFO] mve_confidence: 0.6
[INFO] name: code
[INFO] opensfm_depthmap_method: PATCH_MATCH
[INFO] opensfm_depthmap_min_consistent_views: 3
[INFO] opensfm_depthmap_min_patch_sd: 1
[INFO] orthophoto_bigtiff: IF_SAFER
[INFO] orthophoto_compression: DEFLATE
[INFO] orthophoto_cutline: False
[INFO] orthophoto_no_tiled: False
[INFO] orthophoto_resolution: 5
[INFO] pc_classify: False
[INFO] pc_csv: False
[INFO] pc_ept: False
[INFO] pc_filter: 2.5
[INFO] pc_las: False
[INFO] project_path: /datasets
[INFO] rerun: None
[INFO] rerun_all: False
[INFO] rerun_from: None
[INFO] resize_to: 2048
[INFO] skip_3dmodel: False
[INFO] sm_cluster: None
[INFO] smrf_scalar: 1.25
[INFO] smrf_slope: 0.15
[INFO] smrf_threshold: 0.5
[INFO] smrf_window: 18.0
[INFO] split: 300
[INFO] split_overlap: 100.0
[INFO] texturing_data_term: gmi
[INFO] texturing_keep_unseen_faces: False
[INFO] texturing_nadir_weight: 16
[INFO] texturing_outlier_removal_type: gauss_clamping
[INFO] texturing_skip_global_seam_leveling: False
[INFO] texturing_skip_hole_filling: False
[INFO] texturing_skip_local_seam_leveling: False
[INFO] texturing_skip_visibility_test: False
[INFO] texturing_tone_mapping: none
[INFO] time: False
[INFO] use_3dmesh: False
[INFO] use_exif: False
[INFO] use_fixed_camera_params: False
[INFO] use_hybrid_bundle_adjustment: False
[INFO] use_opensfm_dense: False
[INFO] verbose: False
[INFO] ==============
[INFO] Running dataset stage
[INFO] Loading dataset from: /datasets/code/images
[INFO] Loading images database: /datasets/code/images.json
[INFO] Found 983 usable images
[INFO] Coordinates file already exist: /datasets/code/odm_georeferencing/coords.txt
[INFO] Parsing SRS header: WGS84 UTM 16N
[INFO] Finished dataset stage
[INFO] Running split stage
[INFO] Large dataset detected (983 photos) and split set at 300. Preparing split merge.
[WARNING] /datasets/code/opensfm/image_list.txt already exists, not rerunning OpenSfM setup
[WARNING] Detect features already done: /datasets/code/opensfm/features exists
[WARNING] Match features already done: /datasets/code/opensfm/matches exists
[WARNING] Submodels directory already exist at: /datasets/code/submodels
[INFO] Dataset has been split into 4 submodels. Reconstructing each submodel…
[INFO] Reconstructing /datasets/code/submodels/submodel_0000/opensfm
[WARNING] Found a valid OpenSfM tracks file in: /datasets/code/submodels/submodel_0000/opensfm/tracks.csv
[WARNING] Found a valid OpenSfM reconstruction file in: /datasets/code/submodels/submodel_0000/opensfm/reconstruction.json
[INFO] Reconstructing /datasets/code/submodels/submodel_0001/opensfm
[WARNING] Found a valid OpenSfM tracks file in: /datasets/code/submodels/submodel_0001/opensfm/tracks.csv
[WARNING] Found a valid OpenSfM reconstruction file in: /datasets/code/submodels/submodel_0001/opensfm/reconstruction.json
[INFO] Reconstructing /datasets/code/submodels/submodel_0002/opensfm
[WARNING] Found a valid OpenSfM tracks file in: /datasets/code/submodels/submodel_0002/opensfm/tracks.csv
[WARNING] Found a valid OpenSfM reconstruction file in: /datasets/code/submodels/submodel_0002/opensfm/reconstruction.json
[INFO] Reconstructing /datasets/code/submodels/submodel_0003/opensfm
[WARNING] Found a valid OpenSfM tracks file in: /datasets/code/submodels/submodel_0003/opensfm/tracks.csv
[WARNING] Found a valid OpenSfM reconstruction file in: /datasets/code/submodels/submodel_0003/opensfm/reconstruction.json
[WARNING] Found a alignment done progress file in: /datasets/code/opensfm/alignment_done.txt
[INFO] Submodel submodel_0000 has already been aligned.
[INFO] Submodel submodel_0001 has already been aligned.
[INFO] Submodel submodel_0002 has already been aligned.
[INFO] Submodel submodel_0003 has already been aligned.
[INFO] ========================
[INFO] Processing submodel_0000
[INFO] ========================
[INFO] running /code/run.py --project-path /datasets/code/submodels --merge --orthophoto-cutline --dem-euclidean-map --skip-3dmodel submodel_0000
usage: run.py [options]
run.py: error: argument --merge: expected one argument
Traceback (most recent call last):
File “/code/run.py”, line 56, in
app.execute()
File “/code/stages/odm_app.py”, line 93, in execute
self.first_stage.run()
File “/code/opendm/types.py”, line 376, in run
self.next_stage.run(outputs)
File “/code/opendm/types.py”, line 357, in run
self.process(self.args, outputs)
File “/code/stages/splitmerge.py”, line 150, in process
system.run(" ".join(map(quote, argv)), env_vars=os.environ.copy())
File “/code/opendm/system.py”, line 76, in run
raise Exception(“Child returned {}”.format(retcode))
Exception: Child returned 2