draco icon indicating copy to clipboard operation
draco copied to clipboard

Draco is a library for compressing and decompressing 3D geometric meshes and point clouds. It is intended to improve the storage and transmission of 3D graphics.

Results 194 draco issues
Sort by recently updated
recently updated
newest added

Some platforms, the linker may be stripping out the self-registering classes FileReaderFactory uses to read inputs. You can use the following ways to avoid this problem. target_link_libraries(native-lib -Wl,--whole-archive draco -Wl,--no-whole-archive)...

Hi, I just started to learn draco library recently, but I noticed there aren't many guidance and tutorials on how to use it, especially in C++. So could you write...

help wanted
documentation

The officially provided sample code is as follows: ``` draco::DecoderBuffer buffer; buffer.Init(data.data(), data.size()); const draco::EncodedGeometryType geom_type = draco::GetEncodedGeometryType(&buffer); if (geom_type == draco::TRIANGULAR_MESH) { unique_ptr mesh = draco::DecodeMeshFromBuffer(&buffer); } else if...

bug
enhancement

I converted the point cloud data from the KITTI dataset into ply format. The header of the ply file is shown as follows: ply format binary_little_endian 1.0 element vertex 126085...

question

The fallback implementation for `MostSignificantBit` was optimized, replacing the while loop with a series of bitwise operations. Tests on my system indicate a 3-4x speedup.

OSS-Fuzz has found a bug in this project. Please see https://oss-fuzz.com/testcase?key=5096288768032768 for details and reproducers. This issue is mirrored from https://bugs.chromium.org/p/oss-fuzz/issues/detail?id=68890 and will auto-close if the status changes there. If...

'include: "scope"' should list the dependencies update in the commit.

- **docs/Gemfile.lock: update gem dependencies** - **docs/.ruby-version: bump version to 2.5.0**

When building draco as part of a larger project, draco_features.h gets misplaced (into the main output folder) and failed to be found by draco source file