Ellipseselect

버전 1.0.0.0 (4.38 KB) 작성자: Rajiv Narayan
An interactive ellipse selection tool
다운로드 수: 1.8K
업데이트 날짜: 2006/10/9

라이선스 보기

ELLIPSESELECT An interactive ellipse selection tool

HE = ELLIPSESELECT('init', A, B, X0, Y0, PHI, STYLE)
Creates the ellipse and initialzes callbacks. Returns the handle of the ellipse HE.
Ellipse parameters:
A Length of the semi-major axis
B Length of the semi-minor axis
X0 Abscissa of the center of the ellipse
Y0 Ordinate of the center of the ellipse
PHI Angle (in radians) between x-axis and the major axis
STYLE Definition of the plotted line style
Usage:
Once created, the ellipse shape can the adjusted interactively using the mouse.
The center can be moved by dragging the 'x' at the center of the ellipse. The lengths of the axes can be adjusted by dragging on the red and black control points on the ellipse. The ellipse can be rotated through an arbitrary angle by left clicking and dragging on the ellipse boundary.
The ellipse parameters are saved in the ellipse handle's userdata roperty and can be obtained using:
PARAMS = ELLIPSESELECT('params', HE), where PARAMS is a structure with the ellipse parameters.
The ellipse can be deleted by right clicking on the ellipse boundary and selecting 'delete' from the context-menu. Alternatively, the ellipse can be deleted programmatically by using the following call to ELLIPSESELECT.
STATUS = ELLIPSESELECT('deletehandle',HE)
STATUS returns 0 if the delete operation was successful, -1 otherwise.

Example:
%generate some data
x=randn(500,2).*repmat([0.1,0.05],500,1);
phi=pi/4; rotmat = [cos(phi),sin(phi);-sin(phi),cos(phi)];
y=rotmat*x';
scatter(y(1,:),y(2,:),'c.'); hold on
axis([-1,1,-1,1])
%create an ellipse
he = ellipseselect('init',1,1,0,0,pi/4,'r-.');
% modify ellipse line style
set(he,'LineWidth',2);
% get current ellipse parameters
params = ellipseselect('params',he);
% delete the ellipse
status = ellipseselect('deletehandle',he);

인용 양식

Rajiv Narayan (2024). Ellipseselect (https://www.mathworks.com/matlabcentral/fileexchange/12569-ellipseselect), MATLAB Central File Exchange. 검색됨 .

MATLAB 릴리스 호환 정보
개발 환경: R13SP1
모든 릴리스와 호환
플랫폼 호환성
Windows macOS Linux
카테고리
Help CenterMATLAB Answers에서 Visual Exploration에 대해 자세히 알아보기
도움

받음: EllipseDraw1.0

Community Treasure Hunt

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

Start Hunting!
버전 게시됨 릴리스 정보
1.0.0.0