STL file Find center sphere
2 ビュー (過去 30 日間)
古いコメントを表示
Hi there,
I have a STL file (stereolitography file format) and in this file there are 3 semisphere, is possibile using Matlab to detect those sphere and calculate center of each sphere? Thanks in advance
0 件のコメント
回答 (2 件)
Alexandr Litvin
2019 年 3 月 11 日
Hi, I am solving a similar problem. Did you find the coordinates of the sphere in the STL image?
1 件のコメント
darova
2019 年 3 月 11 日
Have a few spheres? Is there a distance between them?

x1 = X(X<a & Y>b);
y1 = Y(X<a & Y>b);
x2 = X(X>a);
y2 = Y(X>a);
x1 = X(X<a & Y<b);
y1 = Y(X<a & Y<b);
参考
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!