-
Notifications
You must be signed in to change notification settings - Fork 561
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Bug report on importing mesh. #734
Comments
Hi @sparse-mvs-2 , thank you for your interest in Kaolin. I quickly searched online and couldn’t find anything about per-vertex color in obj file format. Are those obj from a dataset? |
Yes. I use my own obj data. |
Did you use a specific tool to generate those obj? this doesn’t seem to be part of the file format |
Usually it looks like this: 3dScannerApp.commtllib textured_output.mtl But sometimes we can save the vertex color in each vertex (meshlab for example), then it looks like this: mtllib test.mtl The first three are the coordinate and the last three are rbg values. |
I think that's an interesting property to support, to be noted that this is not part of .obj standard. I'll have a look to add support if that's important for the community. |
I'm trying to bring in a mesh into kaolin, but I've discovered an issue with the kaolin.io.obj.import_mesh function. Specifically, import_mesh doesn't currently support OBJ files that include color information. If the OBJ file includes x, y, z, r, g, b values, the vertices in kaolin will contain RGB values.
The text was updated successfully, but these errors were encountered: