Skip to content

Commit 253cb25

Browse files
committed
Change sai-cli process dense point cloud decimation defaults
1 parent 613a125 commit 253cb25

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

python/cli/process/process.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -10,7 +10,7 @@ def define_args(parser):
1010
parser.add_argument("input", help="Path to folder with session to process")
1111
parser.add_argument("output", help="Output folder")
1212
parser.add_argument('--format', choices=['taichi', 'nerfstudio'], default='nerfstudio', help='Output format')
13-
parser.add_argument("--cell_size", help="Point cloud decimation cell size", type=float, default=0.025)
13+
parser.add_argument("--cell_size", help="Dense point cloud decimation cell size (meters)", type=float, default=0.1)
1414
parser.add_argument("--distance_quantile", help="Max point distance filter quantile (0 = disabled)", type=float, default=0.99)
1515
parser.add_argument("--key_frame_distance", help="Minimum distance between keyframes (meters)", type=float, default=0.05)
1616
parser.add_argument('--no_icp', action='store_true')

0 commit comments

Comments
 (0)