@@ -24,14 +24,14 @@ use std::thread;
2424
2525/// This tool can be used to identify points in a LiDAR point cloud that are associated with the tops of individual trees. The
2626/// tool takes a LiDAR point cloud as an input (`input_lidar`) and it is best if the input file has been normalized using the
27- /// `lidar_tophat_transform` function, such that points record height above the ground surface. Note that the `input_file `
27+ /// `lidar_tophat_transform` function, such that points record height above the ground surface. Note that the `input `
2828/// parameter is optional and if left unspecified the tool will search for all valid LiDAR (*.las, *.laz, *.zlidar) files
2929/// contained within the current working directory. This 'batch mode' operation is common among many of the LiDAR processing
3030/// tools. Output vectors are saved to disc automatically for each processed LiDAR file when operating in batch mode.
3131///
3232/// The tool will evaluate the points within a local neighbourhood around each point in the input point cloud and determine
3333/// if it is the highest point within the neighbourhood. If a point is the highest local point, it will be entered into the
34- /// output vector file (`output_file `). The neighbourhood size can vary, with higher canopy positions generally associated with larger
34+ /// output vector file (`output `). The neighbourhood size can vary, with higher canopy positions generally associated with larger
3535/// neighbourhoods. The user specifies the `min_search_radius` and `min_height` parameters, which default to 1 m and 0 m
3636/// respectively. If the `min_height` parameter is greater than zero, all points that are less than this value above the
3737/// ground (assuming the input point cloud measures this height parameter) are ignored, which can be a useful mechanism
@@ -88,8 +88,8 @@ fn help() {
8888 version Prints the tool version information.
8989
9090 The following flags can be used with the 'run' command:
91- -i, --input_file Name of the input LiDAR file.
92- -o, --output_file Name of the output vector points file.
91+ -i, --input Name of the input LiDAR file.
92+ -o, --output Name of the output vector points file.
9393 --min_search_radius Minimum search radius (m).
9494 --min_height Minimum height (m).
9595 --max_search_radius Maximum search radius (m).
0 commit comments