You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: raycloudtools/raydecimate/raydecimate.cpp
+3-3Lines changed: 3 additions & 3 deletions
Original file line number
Diff line number
Diff line change
@@ -20,9 +20,9 @@ void usage(int exit_code = 1)
20
20
// clang-format off
21
21
std::cout << "Decimate a ray cloud spatially or temporally" << std::endl;
22
22
std::cout << "usage:" << std::endl;
23
-
std::cout << "raydecimate raycloud 3 cm - reduces to one end point every 3 cm" << std::endl;
24
-
std::cout << "raydecimate raycloud 4 rays - reduces to every fourth ray" << std::endl;
25
-
std::cout << "raydecimate raycloud 100 cm 1000 rays - A maximum of 1000 rays per metre cubed" << std::endl;
23
+
std::cout << "raydecimate raycloud 3 cm - reduces to one end point every 3 cm. A spatially even subsampling" << std::endl;
24
+
std::cout << "raydecimate raycloud 4 rays - reduces to every fourth ray. A temporally even subsampling (if rays are chronological)" << std::endl;
25
+
std::cout << "raydecimate raycloud 20 cm 64 rays - A maximum of 64 rays per cubic 20 cm. Retains small-scale details compared to spatial decimation" << std::endl;
26
26
std::cout << "raydecimate raycloud 3 cm/m - reduces to ray ends spaced 3 cm apart for each metre of their length" << std::endl;
0 commit comments