-
Notifications
You must be signed in to change notification settings - Fork 526
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
Simplification should prune topologically separate components #764
Comments
Ah looks like a dup of #71 which has been open since 2019... :) |
Just thinking out loud... what about a pass that computes the topological submeshes, computes bounding boxes of them, and discards any with size below the error threshold? I think it would help in this case at least. |
Yeah this happens to be planned as one of the next improvements to |
Oh awesome! Was thinking of trying it myself. |
I tried an implementation with some of my code, seems to work well: It's relatively straightforward, breadth first search over adjacent triangles to identify connected components, compute AABB, compare with error, discard small components. Runs in linear time on the number of triangles. I had a look at the meshoptimizer code but the data structures look a little tricky so I think I'll leave that to you :) 2024-09-12.21-04-07.mp4 |
If you could share the asset that would be nice; I have a preliminary implementation for this feature and would like to make sure it works well on this. |
Thanks! This was helpful. Screencast.from.2024-09-25.14-20-45.webm |
Hi,
I'm running into this problem a lot, here is an example mesh on which it occurs.
The mesh has a bunch of small items in it (the cylindrical spotlights) that are topologically separate. As a result of that, meshopt_simplify / meshopt_simplifyWithAttributes can't remove them (as documented).
This is the result of meshopt_simplify:
The total number of triangles is only slightly reduced.
So then I call meshopt_simplifySloppy, which successfully removes the spotlights. Unfortunately meshopt_simplifySloppy seems to merge vertices aggressively, resulting in pretty incorrect shading normals on the room itself. See attached pics.
What I want is some kind of simplification that can remove or merge topologically separate components, but which doesn't merge vertices on edges, and hence maintains reasonable shading normal fidelity.
Do you have any suggestions for that? Is it possible with meshoptimizer as-is, or would it need to be added?
Thanks,
Nick C.
p.s. please feel free to recategorise as a feature enhancement or discussion item.
The text was updated successfully, but these errors were encountered: