How to fit a square and find the center point?

조회 수: 3 (최근 30일)
aneps
aneps 2014년 1월 14일
댓글: Matt J 2014년 1월 14일
I have a data plot look like in the picture:
I want to fit a square box enclosing maximum number of points and find the center of the box. You can see in the picture, the top and the right side seems to be the edge of the square. So the fit can assume the top and the right side as the two edges. How can I do this?

채택된 답변

Matt J
Matt J 2014년 1월 14일
편집: Matt J 2014년 1월 14일
If your points are the rows of a matrix P, then
lowerleftCorner=min(P);
upperrightCorner=max(P);
center = lowerleftCorner/2 + upperrightCorner/2;
This will give you the corners of the tightest, non-rotated rectangle around the points. If you really do want a square and not a rectangle, you can enlarge one of the sides of the rectangle.

추가 답변 (0개)

카테고리

Help CenterFile Exchange에서 Interactions, Camera Views, and Lighting에 대해 자세히 알아보기

태그

아직 태그를 입력하지 않았습니다.

Community Treasure Hunt

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

Start Hunting!

Translated by