How can I find the intersection between a line and a 3D surface?

99 ビュー (過去 30 日間)
Leonardo Colavitti
Leonardo Colavitti 2017 年 8 月 24 日
コメント済み: Leonardo Colavitti 2018 年 7 月 24 日
Hi guys, I am facing a ray tracing problem and now I am a bit locked. My target is to find the point of intersection (Xp, Yp, Zp) between a straight line of which I know the equation and a surface in 3 dimensions that is not defined analytically but consists in a series of n points in the 3 dimensions. Does anyone have any suggestion? Thanks in advance for your help,
Leonardo
  2 件のコメント
jabrie
jabrie 2018 年 7 月 22 日
Did you find an efficient solution to solve this problem? I am currently looking for a ray-triangle intersection solution. Unfortunately, my surface model consists of several million triangular meshes. Therefore, the intersection calculation of a ray with all available 3D triangles is not efficient enough. What is your starting point for this problem?
Leonardo Colavitti
Leonardo Colavitti 2018 年 7 月 24 日
Ciao Jabrie, sorry for the delay in the reply. Yes, at the end I remember that I was able to solve that problem... In my opinion the matlab function TriangleRayIntersection.m can strongly help you. The package is available at this link: https://ch.mathworks.com/matlabcentral/fileexchange/33073-triangle-ray-intersection. Best, Leonardo

サインインしてコメントする。

採用された回答

John D'Errico
John D'Errico 2017 年 8 月 24 日
The "surface" exists only in your mind. All you have are points. Isolated points. So until you find away to connect those points into a true surface in some form, you can do nothing.
Simple is to use a convex hull. That is great, if the volume described is truly convex, or even sufficiently close to being convex. Your next choice is to use an alpha shape.
In either of the above cases, the outer boundary is a triangulation. So now the problem reduces to solving for the intersection of a line with a triangulated surface. This part is pretty easy. You just need to solve for the intersection of a line with a triangle, and then repeat for each triangle. Better code will see how to eliminate some of those triangles from consideration, but in any case it is not that hard. Just computational geometry.

その他の回答 (1 件)

Subhosit Ray
Subhosit Ray 2018 年 5 月 30 日
Just like the famous yoda said the matrix exists only in your mind ^_^
but another cool way to find the surface is using fit() function.

カテゴリ

Help Center および File ExchangeSurface and Mesh Plots についてさらに検索

Community Treasure Hunt

Find the treasures in MATLAB Central and discover how the community can help you!

Start Hunting!

Translated by