DracoPy icon indicating copy to clipboard operation
DracoPy copied to clipboard

Python wrapper for Google's Draco mesh compression library.

Results 16 DracoPy issues
Sort by recently updated
recently updated
newest added

I'm trying to install CloudVolume, but DracoPy is a dependency of CloudVolume and it's DracoPy that's giving me the following error on installation with pip: ``` File "/home/node/.local/lib/python3.11/site-packages/skbuild/setuptools_wrap.py", line 453,...

installation

I used the following two pieces of code to judge the encoding performance of tex_coord data: binary1 = DracoPy.encode(pos_data, face_data, preserve_order=True) binary2 = DracoPy.encode(pos_data, face_data, tex_coord=np.array(tex_data), preserve_order=True) and tex_coord is...

Is there a design rotation method in the DracoPy?like open3d mesh.transform(rotation matrix)

enhancement

Greatings! I'm doing "pip install DracoPy" (latest 1.3.0) and I have a problem with that version. It seems like this version 1.3.0 does not have the latest changes (DracoPy.encode(points, faces,...

I'm trying to use DracoPy to encode point clouds, and send them to a frontend I have, where they are decoded using Draco again (but in typescript, so with Three.js,...

Hi, I am trying to encode and decode, intensity values from a LIDAR along with the 3D position information (point cloud). May I know if there is any way to...

#5 Can it encode normal or uv? - [x] Decode supports Texture Coordinates and Normals - [ ] Encode supports Texture Coordinates and Normals Co-Authored-By: Faru Nuri Sönmez

Are you planning to add attributes compression support? Draco itself supports it. As well as texture coordinates, colors, normals etc. The ability to compress topology is good, but handling additional...

enhancement

Hi! First, thank you for the library development. I want to use this lib in my python project. In addition to 3D geometry (draco mesh) I have to serialize/deserialize custom...

enhancement