From 7c29a653194faab2861f3cc23e1ac4aa72a78fcd Mon Sep 17 00:00:00 2001 From: Maciej Wielgosz <maciej.wielgosz@nibio.no> Date: Fri, 21 Oct 2022 09:11:37 +0200 Subject: [PATCH] subsample off --- fsct/other_parameters.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/fsct/other_parameters.py b/fsct/other_parameters.py index 2af9ed8..839a85f 100644 --- a/fsct/other_parameters.py +++ b/fsct/other_parameters.py @@ -6,7 +6,7 @@ import fsct # These have been tuned to work on most high resolution forest point clouds without changing them. other_parameters = dict(model=os.path.join(fsct.__path__[0], 'model', 'model.pth'), box_dims=np.array([6, 6, 8]), - box_overlap=np.array([0.5, 0.5, 0.25]), + box_overlap=np.array([0.5, 0.5, 0.25]), # box_overlap=np.array([0.5, 0.5, 0.25]), min_points_per_box=1000, max_points_per_box=20000, terrain_class=0, @@ -19,7 +19,7 @@ other_parameters = dict(model=os.path.join(fsct.__path__[0], 'model', 'model.pth num_neighbours=5, slice_thickness=0.2, slice_increment=0.05, - subsample=True, + subsample=False, # subsample=True subsampling_min_spacing=0.01, is_wood=1, min_tree_cyls=10, -- GitLab