0

我有一个读取 2 个文件并将它们分配给 2 个变量的函数:

skelfile='data/name.asf'; %asf and amc files are associated,both needed for later stages
motfile='data/name.amc';
[skel,mot]=readMocap(skelfile,motfile);%the function that i need to use is the readMocap

上面的代码将给变量 skel,mot 作为 1X1 结构,其中包含数字和字符的信息(包含数字、单元格、字符串、aarays 作为结构字段)。

问题是如何使用 Gui 中的函数!!我使用一个按钮来加载 2 个文件并在 2 个静态文本中显示两个 asf、amc 文件的文件名 asf、amc 文件是包含人体骨骼的运动捕捉数据的文件,其中 asf 具有关于骨骼的信息和关于运动的 amc (帧序列)

function pushbutton_Callback(hObject, eventdata, handles)
% hObject    handle to load_MoCap (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)

[filename, pathname] = uigetfile('*.asf', 'MoCap files');

% show name at the static texts
if isequal(filename,0) 
   set(handles.asf_filename, 'String', 'Please select an .asf file to continue')
else
  set(handles.asf_filename, 'String', filename)
  skelfile=filename;
[filename2, pathname2] = uigetfile('*.amc;*.c3d', 'MoCap files');
if isequal(filename2,0)
   set(handles.amc_filename, 'String', 'Please select an .amc file to continue')
else
  set(handles.amc_filename, 'String', filename2)

 %the problem
 ============
 %from here i want to run the function and have at a static text the text that
 %have   when i write skel    in the command promt of matlab, or at least somehow
 %evaluate tha skel and mot have been assigned as structs

  motfile=filename;
  [skel,mot]= readMocap(skelfile, motfile);
  handles.skel=skel;
  handles.mot=mot;
  set(handles.skel_mot,'String',skel)
   % skel_mot is the static text that refer above
   %and i use as property type at the set command th 'string' but i don't  think
   %that   is correct .   skel variable is a 1x1 struct                
  end
  end
guidata(hObject,handles);

当您启动空白 gui 时,我的代码中除了默认值之外没有其他任何内容。a)我是否必须在 gui 的打开功能处添加一些东西(句柄)?我不想在加载文件之前启动一些东西。b)我想将文件中的信息用作将从 gui 调用的其他函数的输入,所以当我在 gui 中调用函数时如何将它们用作输入?作为 skel、mot 或 handle.skel,手柄.mot??

预先感谢您的任何回复。

4

2 回答 2

1

一些东西:

  • 是的,您需要在handlesGUI 的打开功能中定义字段。您不需要打开任何文件,只需根据需要为它们提供空字符串值或 nan 值。
  • 您需要使用该guidata函数将数据存储在回调之间的句柄中。更多信息在这里。这样你就可以使用handles.whatever 来访问其他回调中的变量。
  • 你说的skelmot结构。set(handles.skel_mot,'String',skel)需要 skel 是一个字符串。
  • 确保您从 gui 调用的任何函数都在 gui 可以找到它们的路径中。
于 2013-10-29T16:13:38.247 回答
0

我找到了解决问题的方法!

我写了一个脚本来做我想做的事。从一个按钮打开一个窗口来选择我的文件,然后我在脚本中调用函数,这样我就有了 structs skel,mot 分配了想要的信息。最后,我按照 Molly 的建议使用手柄,并使用命令 assignin 在工作区拥有 skel,mot。

所以:函数 GUI_1_OpeningFcn(hObject, eventdata, handles, varargin) %default comments

handles.skel=NaN;
handles.mot=NaN;
% Choose default command line output for GUI_1
handles.output = hObject;

% Update handles structure
guidata(hObject, handles); 

============
more of the default Gui code
============

 %pushbutton function 

function load_MoCap_Callback(hObject, eventdata, handles)
% hObject    handle to load_MoCap (see GCBO)
% eventdata  reserved - to be defined in a future version of MATLAB
% handles    structure with handles and user data (see GUIDATA)


%callint the script
nameofthescript;

%here skel and mot have been assigned so i put them to the handles
handles.skel=skel;
handles.mot=mot;

%with that i have them at the workspace for evaluation of what i want to do  next
assignin ('base', 'skel', handles.skel);
assignin('base','mot',handles.mot);


guidata(hObject,handles);

从那时起,我可以在我想要的任何其他函数中使用handles.skel 和handles.mot 作为输入

于 2013-10-29T18:48:04.513 回答