39 | | To remove them from LAS files it is suggested to download the LASTools package, specifically the las2las tool. |
| 39 | To remove them from LAS files it is suggested to download the [http://www.cs.unc.edu/~isenburg/lastools/ LASTools] package, specifically the [http://www.cs.unc.edu/~isenburg/lastools/download/las2las_README.txt las2las] tool. |
| 40 | |
| 41 | This can be used to remove noise points by typing: |
| 42 | |
| 43 | {{{ |
| 44 | las2las -i point_cloud.txt -o filtered_point_cloud.txt -drop_class 7 |
| 45 | }}} |
| 46 | |
| 47 | which will create a new file called filtered_point_cloud.txt from the points in point_cloud.txt excluding those with classification 7. |