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
We have a use case where we would like to load PLY data from a zip file:
with zipfile.ZipFile(file_path, "r") as zip_file:
ply_data = zip_file.open("mesh.ply").read()
faces, vertices = pcu.load_mesh_vf(ply_data, "ply") # Does not exist!
The current interface only allows loading from a file at a given path:
v, f = pcu.load_mesh_vf("path/to/mesh.ply")
May we please request this feature to be added to PCU in the future?
The text was updated successfully, but these errors were encountered:
We have a use case where we would like to load PLY data from a zip file:
The current interface only allows loading from a file at a given path:
May we please request this feature to be added to PCU in the future?
The text was updated successfully, but these errors were encountered: