draco icon indicating copy to clipboard operation
draco copied to clipboard

support ply texcoord

Open HaruoOgawa opened this issue 4 months ago • 2 comments

HaruoOgawa avatar Sep 04 '25 02:09 HaruoOgawa

Thanks for your pull request! It looks like this may be your first contribution to a Google open source project. Before we can look at your pull request, you'll need to sign a Contributor License Agreement (CLA).

View this failed invocation of the CLA check for more information.

For the most up to date status, view the checks section at the bottom of the pull request.

google-cla[bot] avatar Sep 04 '25 02:09 google-cla[bot]

while adding texcoord support to ply decoding would be a nice feature to have, I'm not sure if the code in this PR would actually work for most cases. It would certainly not work for texture coordinates encoded with our PlyEncoder which would be probably the main requirement. The most common way to store texcoord in ply is by using an face element list property, something like:

element face numFaces
...
property list uint8 float texcoord

Is there any software that produces per-vertex texcoords with texture_u and texture_v properties as proposed in this PR?

ondys avatar Sep 04 '25 20:09 ondys