You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Hi,
Thank you for providing this awesome project.
In this project, Adjustment of scale is a very important operation to obtain a beautiful result. However, in the paper, I do not find the detail about the scale adjustment. Hence, I have few questions about it.
Is the scale adjustment operation based on a published paper or existing algorithm?
In TravelField function, how to understand the following code block. MatrixXd &T = triangle_space[f]; VectorXd coord = T * Vector3d(p - V.col(F(0, f))); VectorXd dirs = (T * pt); double lens[3]; lens[0] = -coord.y() / dirs.y(); lens[1] = (1 - coord.x() - coord.y()) / (dirs.x() + dirs.y()); lens[2] = -coord.x() / dirs.x();
In EstimateSlope(), could you please teach me why we need area when calculate mK at line 93, and then divide it at line 99.
Thank you for your time,
The text was updated successfully, but these errors were encountered:
Hi,
Thank you for providing this awesome project.
In this project, Adjustment of scale is a very important operation to obtain a beautiful result. However, in the paper, I do not find the detail about the scale adjustment. Hence, I have few questions about it.
MatrixXd &T = triangle_space[f]; VectorXd coord = T * Vector3d(p - V.col(F(0, f))); VectorXd dirs = (T * pt); double lens[3]; lens[0] = -coord.y() / dirs.y(); lens[1] = (1 - coord.x() - coord.y()) / (dirs.x() + dirs.y()); lens[2] = -coord.x() / dirs.x();
Thank you for your time,
The text was updated successfully, but these errors were encountered: