3 %> @brief Properties Window
for vis_scatter3d (3D Scatter Plot)
4 %> @image html Screenshot-uip_vis_scatter3d.png
15 function varargout = uip_vis_scatter3d(varargin)
17 % Begin initialization code - DO NOT EDIT
19 gui_State =
struct(
'gui_Name', mfilename, ...
20 'gui_Singleton', gui_Singleton, ...
21 'gui_OpeningFcn', @uip_vis_scatter3d_OpeningFcn, ...
22 'gui_OutputFcn', @uip_vis_scatter3d_OutputFcn, ...
23 'gui_LayoutFcn', [] , ...
25 if nargin && ischar(varargin{1})
26 gui_State.gui_Callback = str2func(varargin{1});
30 [varargout{1:nargout}] = gui_mainfcn(gui_State, varargin{:});
32 gui_mainfcn(gui_State, varargin{:});
34 % End initialization code - DO NOT EDIT
37 % --- Executes just before uip_vis_scatter3d is made visible.
38 function uip_vis_scatter3d_OpeningFcn(hObject, eventdata, handles, varargin)
39 handles.output.flag_ok = 0;
40 guidata(hObject, handles);
44 % --- Outputs from this function are returned to the command clae.
45 function varargout = uip_vis_scatter3d_OutputFcn(hObject, eventdata, handles)
47 uiwait(handles.figure1);
48 handles = guidata(hObject);
49 varargout{1} = handles.output;
54 varargout{1} = output;
57 % --- Executes on button press in pushbuttonOK.
58 function pushbuttonOK_Callback(hObject, eventdata, handles)
60 handles.output.params = {...
61 'idx_fea',
get(handles.edit_idx_fea,
'String'), ...
62 'confidences', mat2str(eval(
get(handles.edit_confidences,
'String'))), ...
63 'textmode', int2str(
get(handles.popupmenu_textmode,
'Value')-1) ...
65 handles.output.flag_ok = 1;
66 guidata(hObject, handles);
73 function edit_idx_fea_Callback(hObject, eventdata, handles)
75 function edit_idx_fea_CreateFcn(hObject, eventdata, handles)
76 if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
77 set(hObject,'BackgroundColor','white');
80 function edit_confidences_Callback(hObject, eventdata, handles)
82 function edit_confidences_CreateFcn(hObject, eventdata, handles)
83 if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
84 set(hObject,'BackgroundColor','white');
87 function checkbox_flag_text_Callback(hObject, eventdata, handles)
89 function popupmenu_textmode_Callback(hObject, eventdata, handles)
91 function popupmenu_textmode_CreateFcn(hObject, eventdata, handles)
92 if ispc && isequal(get(hObject,'BackgroundColor'), get(0,'defaultUicontrolBackgroundColor'))
93 set(hObject,'BackgroundColor','white');
Property idx_fea
=[1, 2, 3] Index of features to be uses as coordinates. Must be a 3-element vector.
function gui_set_position(in hObject)
function irerrordlg(in errorstring, in dlgname)