Python code for reading profilometry data from a Veeco Wyko NT9100, preprocessing it, and saving it into another format for further processing.

*A picture of the Veeko profilometer.*
In the Veeco software, the file should be saved in ASC format.

*Options for the ASC format in the Veeko software.*
### Notes
...
...
@@ -28,6 +30,7 @@ In the Veeco software, the file should be saved in ASC format.
The following figure shows an example of the process on data from a face of a 2 mm polyhedral particle.

*Illustration of the steps the code performs, form left to right: reading, cleaning, filling.*
## Functions
...
...
@@ -38,6 +41,7 @@ The data passed between function is stored in a [NumPy array](https://numpy.org/
Simple usage, the only parameter is the input file name. It outputs the profilometry data, what I call the height field `hfld`, as well as an intensity field `ifld`.

*The intensity field from the data shown in the example above.*