Find the centre and the radius of the circle or ellipse

24 ビュー (過去 30 日間)
Khoder Makkawi
Khoder Makkawi 2023 年 3 月 20 日
編集済み: Matt J 2023 年 3 月 20 日
I have these 3D data (attached) which represents the points of an ellipse or a circle (it is not exactly a circle).
How can I find the centre and the radius of this ellipse ?

採用された回答

Matt J
Matt J 2023 年 3 月 20 日
編集済み: Matt J 2023 年 3 月 20 日
You can download this,
and use ellipticalFit().
load('ellipse_circle_3Ddata.mat')
pFit=planarFit(data);
eFit=ellipticalFit(pFit.project2D(data))
Center3D=pFit.unproject3D(eFit.center(:))'
efit =
ellipticalFit with properties:
center: [1.9450e+05 7.1093e+04]
a: 2.6560e+07
b: 2.6559e+07
angle: 15.8694
Center3D =
1.0e+05 *
-1.2707 1.6117 -0.2764

その他の回答 (0 件)

カテゴリ

Help Center および File ExchangeMATLAB についてさらに検索

製品


リリース

R2022a

Community Treasure Hunt

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

Start Hunting!

Translated by