-
Notifications
You must be signed in to change notification settings - Fork 254
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
PLY import: support non-standard data ordering (e.g. scaniverse) #108
Comments
That sounds exactly like #81 (comment) i.e. the PLY file is "somehow" not matching the standard data layout, but hard to say how exactly without having the file in question. Can you share some file from that scaniverse thing? |
Thanks for you fast answer. Regards |
Ok looks like scaniverse produces a PLY file with different data order compared to what most other 3DGS software does. To fix this, I'd have to implement some code to rearrange the data into the expected order. I don't know if/when I'd do that (or someone could implement this and contribute a PR to this repo?). This could also perhaps be fixed on scaniverse side by making their export match the data order used by others. Scaniverse data layout is this:
whereas the "standard" order is:
|
I'm having the same issue. I've sent an email to Scaniverse, asking what they can tell me about their format. I'll report back here if I get an answer. I thought of fixing it myself (or maybe writing a ply-file converter), but I can't find the Incidentally, that's also the reason the Scaniverse files give an error: each point is 3 floats short of the expected size (hence 12 bytes shorter). |
@jackjansen oh the scaniverse format/layout is known (see my previous comment here). The |
I have reported the format issue to the Scanniverse team, it should be fixed in the next release. |
I attempted to patch GaussSplatAssetCreator.cs and GaussSplatRendererEditor.cs to load the original Scaniverse file format, but just disabling the normals check and changing the data format didn't work. The color and transparency did not load correctly. I was able to fix problematic Scaniverse ply files and load in Unity after converting them from 3DGS format to Cloud Compare and back to 3DGS using 3dgsconverter. HTH anyone waiting on the Scaniverse app update. |
Hi! The latest version of Scaniverse (3.0.2) exports to PLY with the "standard" layout and is compatible with UnityGaussianSplatting. |
Hello,
I get this while importing ply from scaniverse.
PLY Vertex size mismatch, expected 248 but file has 236.
Can you help?
Thanks
Ben
The text was updated successfully, but these errors were encountered: