Effacer les filtres
Effacer les filtres

How to fit a circle in the marked area of the image?

4 vues (au cours des 30 derniers jours)
mathru
mathru le 13 Juin 2020
I want to fit a circle at the peak (the marked area) of the wavy surface. How can I do that?

Réponses (2)

KSSV
KSSV le 13 Juin 2020
If you fix the center C, radius R of the circle. You can plot circle using.
C = rand(1,2) ; % center of circle
R = 1. ; % Radius of the circle
th = linspace(0,2*pi) ;
x = C(1)+R*cos(th) ;
y = C(2)+R*sin(th) ;
plot(x,y) ;

Image Analyst
Image Analyst le 13 Juin 2020
Using the (x,y) coordinates, you can fit a circle using the FAQ:

Catégories

En savoir plus sur Get Started with Curve Fitting Toolbox dans Help Center et File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by