Skip to content

Commit

Permalink
modify names keep_classes_ground to keep_neighbors_classes
Browse files Browse the repository at this point in the history
  • Loading branch information
mdupaysign committed Jul 17, 2024
1 parent 54c35f4 commit d1b74a0
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 2 deletions.
2 changes: 1 addition & 1 deletion configs/configs_lidro.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -38,7 +38,7 @@ mask_generation:
virtual_point:
filter:
# Keep ground and water pointclouds between Hydro Mask and Hydro Mask buffer
keep_classes_ground: [2, 9]
keep_neighbors_classes: [2, 9]
vector:
# distance in meters between 2 consecutive points
distance_meters: 2
Expand Down
2 changes: 1 addition & 1 deletion lidro/main_create_virtual_point.py
Original file line number Diff line number Diff line change
Expand Up @@ -58,7 +58,7 @@ def main(config: DictConfig):
distance_meters = config.virtual_point.vector.distance_meters
buffer = config.virtual_point.vector.buffer
crs = CRS.from_user_input(config.io.srid)
classes = config.virtual_point.filter.keep_classes_ground
classes = config.virtual_point.filter.keep_neighbors_classes
k = config.virtual_point.vector.k

# Step 1 : Import Mask Hydro, then apply a buffer
Expand Down

0 comments on commit d1b74a0

Please sign in to comment.