(input_csv)
| 3 | |
| 4 | # Function to read the CSV file and remove duplicates |
| 5 | def read_csv_remove_duplicates(input_csv): |
| 6 | df = pd.read_csv(input_csv, header=None, names=["x", "y", "z"]) |
| 7 | # df = df.drop_duplicates() |
| 8 | return df |
| 9 | |
| 10 | # Function to write the DataFrame to a PLY file |
| 11 | def write_ply(df, output_ply): |
no outgoing calls
no test coverage detected