필터 지우기
필터 지우기

How can I select a point in the figure by mouse?

조회 수: 8 (최근 30일)
M G
M G 2013년 9월 23일
Hi Matlab experts,
I would like to plot (in 3D) a number of points which are selectable from the figure. Please see the image attached (EEG_cap.bmp). I have all coordinates (X,Y,Z) and I can plot it using plot3d function. However, I want a way that enables the user to select each (one or more) of these points (electrodes) by mouse. For example, by clicking on each of them the color turns red and allows user to know that these point are selected for further operations. At the same time the system saves those channels name.
I really appreciate any hint.
Best... :-)
"This figure is originally generated by EEGLAB"

답변 (2개)

David Sanchez
David Sanchez 2013년 9월 23일
You need to make use of
datacursormode
and
getCursorInfo
functions. Look in matlab help for examples on how to use them and retreive cursor position/data.

Arthur
Arthur 2013년 9월 23일
I would make use of the buttondownFcn of the line.
The easiest if you make each point a separate object (e.g. a line). Than the ButtonDownFcn can be as easy as:
set(hObject,'MarkerFaceColor','r')

카테고리

Help CenterFile Exchange에서 Visual Exploration에 대해 자세히 알아보기

Community Treasure Hunt

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

Start Hunting!

Translated by