From d03d0743d8ea7e2c184641c356578ac3da282370 Mon Sep 17 00:00:00 2001 From: indiajohnson-cm <46683218+indiajohnson-cm@users.noreply.github.com> Date: Wed, 23 Jan 2019 14:32:34 -0500 Subject: [PATCH] add output_scale to ODMMveCell Former-commit-id: a7b3805fd32814129140b15cc05b1530bd931659 --- scripts/odm_app.py | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/scripts/odm_app.py b/scripts/odm_app.py index 03e5dde9..c5c1ee98 100644 --- a/scripts/odm_app.py +++ b/scripts/odm_app.py @@ -49,7 +49,9 @@ class ODMApp(ecto.BlackBox): fixed_camera_params=p.args.use_fixed_camera_params, hybrid_bundle_adjustment=p.args.use_hybrid_bundle_adjustment), 'slam': ODMSlamCell(), - 'mve': ODMMveCell(), + + 'mve': ODMMveCell(output_scale=p.args.smvs_output_scale), + 'meshing': ODMeshingCell(max_vertex=p.args.mesh_size, oct_tree=p.args.mesh_octree_depth, samples=p.args.mesh_samples,