Skip to content
Snippets Groups Projects
Commit 7cda53d4 authored by Maciej Wielgosz's avatar Maciej Wielgosz
Browse files

bug fix in the model choice

parent 43b4875c
No related branches found
No related tags found
No related merge requests found
...@@ -47,7 +47,6 @@ if __name__ == "__main__": ...@@ -47,7 +47,6 @@ if __name__ == "__main__":
parameters = dict( parameters = dict(
point_cloud_filename=args.point_cloud, point_cloud_filename=args.point_cloud,
model_filename=args.model,
# Adjust if needed # Adjust if needed
plot_centre=None, # [X, Y] Coordinates of the plot centre (metres). If "None", plot_centre is computed based on the point cloud bounding box. plot_centre=None, # [X, Y] Coordinates of the plot centre (metres). If "None", plot_centre is computed based on the point cloud bounding box.
# Circular Plot options - Leave at 0 if not using. # Circular Plot options - Leave at 0 if not using.
...@@ -80,6 +79,10 @@ if __name__ == "__main__": ...@@ -80,6 +79,10 @@ if __name__ == "__main__":
) )
parameters.update(other_parameters) parameters.update(other_parameters)
parameters["model_filename"] = args.model
# print path to model
print("Using model: {}".format(parameters["model_filename"]))
FSCT( FSCT(
parameters=parameters, parameters=parameters,
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment