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
I am trying to run point2building on a custom dataset. When running test_models.py, the dataloader will read a mesh file and I wonder if there is a script to inference and generate that mesh file.
File "~/point2building/src/modules/data_modules.py", line 55, in __getitem__
vertices, faces = data_utils.load_obj(mesh_file)
File "~/point2building/src/utils/data_utils.py", line 14, in load_obj
with open(poly_file) as f:
FileNotFoundError: [Errno 2] No such file or directory
The text was updated successfully, but these errors were encountered:
The DataSet method loads all data by default, including point cloud and GTMesh, and only point cloud data was used during testing. If you do not have GTMesh data, you can organize the point cloud data in the same way that the point cloud data is loaded in this class, so that its input meets the requirements. @YuzhongHuangCS@oyoyogg
I am trying to run point2building on a custom dataset. When running
test_models.py
, the dataloader will read a mesh file and I wonder if there is a script to inference and generate that mesh file.The line to read mesh file is: Link
Below is the error message I get:
The text was updated successfully, but these errors were encountered: