-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
non-normalized tangent vectors #1
Comments
Are you referring to the computation of u and v for triangles? surface_splatting/surface_splatting/main.cpp Lines 109 to 167 in c376d6c
|
yes the t1, and t2 ? and is it possible to compute it if we are not loading a triangular mesh. ? |
Whats the actual representation of your input geometry? The code above converts a triangle mesh to a point based representation by computing the circumellipse for each triangle of the triangle mesh. The vectors t1 and t2 are the ellipses semi-major and semi-minor axis. While the code allows you to render a triangle mesh using surface splatting in meaningful way, the resulting point based representation is certainly not an optimal reconstruction of the given input geometry. You may want to use a full-blown point-based surface reconstruction algorithm. For example the technique described by Wu and Kobbelt [1]. [1] Optimized Sub-Sampling of Point Sets for Surface Splatting |
Hello sir, can you please explain to me how you exactly computed non-normalized tangent vectors u and v
The text was updated successfully, but these errors were encountered: