-
-
Notifications
You must be signed in to change notification settings - Fork 118
Open
Description
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?
Metadata
Metadata
Assignees
Labels
No labels