how to calculate the intersection area of two ellipses

조회 수: 7 (최근 30일)
amal Mbarki
amal Mbarki 2016년 2월 18일
댓글: Image Analyst 2018년 12월 2일
hello, how can i calculte the intersection area of two ellipses, each ellipse is characterized by(x,y,a,b,w).I thought of solving the system of equations of the two ellipses ,then calculate the area bounded by the points found as solution. would you please help me ?
  댓글 수: 2
Hongchu Yu
Hongchu Yu 2018년 12월 1일
Had you solved the problem? I have the same problem now. Could you tell me the solution?
Image Analyst
Image Analyst 2018년 12월 2일
The only solution I've seen is a numerical one, not an analytical one.

댓글을 달려면 로그인하십시오.

답변 (2개)

Kevin Claytor
Kevin Claytor 2016년 2월 18일
Here is an arxiv paper on ellipse intersection algorithms.

Image Analyst
Image Analyst 2016년 2월 18일
To create an ellipse numerically in 2-D is very easy - just see the FAQ. http://matlab.wikia.com/wiki/FAQ#How_do_I_create_an_ellipse.3F To rotate it, just multiply the coordinates by the rotation matrix [cos(theta), -sin(theta); cos(theta), sin(theta)]. Then just AND the two ellipse images
intersectionArea = ellipsoid1 & ellipsoid2;
pixelArea = sum(intersectionArea (:)); % Compute the area in pixels.
  댓글 수: 3
Image Analyst
Image Analyst 2016년 2월 19일
what do you consider the "real" area? Do you have anlytical formulas for your ellipses?
amal Mbarki
amal Mbarki 2016년 2월 19일
편집: amal Mbarki 2016년 2월 19일
In fact each ellipse is characterized by (x,y)its center coordinate, it big and small axes(a,b) and it's orientation w. I’ve read a code which calculate the intersection area of two circles analytically .the equation is: when (d(i,j)> abs(ri-rj)) & (d(i,j)<(ri+rj), d is the distance between the centers of the two objects) then the intersection area is M(i,j) = f(xi,yi,ri,xj,yj,rj) = ri^2*arctan2(yk,xk)+rj^2*arctan2(yk,d(i,j)-xd(i,j)*yk where xk = (ri^2-rj^2+d(i,j)^2)/(2*d(i,j)) and yk = sqrt(ri^2-xk^2). So I thought why not i calculate the intersection area of two ellipse with the same way.But i don't know how to extract the analytical formula?

댓글을 달려면 로그인하십시오.

카테고리

Help CenterFile Exchange에서 Geometric Geodesy에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by