How Can I close a video while playing in MATLAB GUI
2 visualizaciones (últimos 30 días)
Mostrar comentarios más antiguos
The following error I get it while running a code file
Reference to non-existent field 'aviobj'.
Error in final>CloseVideo_Callback (line 287) handles.aviobj
Error in gui_mainfcn (line 96) feval(varargin{:});
Error in final (line 42) gui_mainfcn(gui_State, varargin{:});
Error in @(hObject,eventdata)final('CloseVideo_Callback',hObject,eventdata,guidata(hObject))
0 comentarios
Respuesta aceptada
Walter Roberson
el 17 de Feb. de 2013
After you assigned a value to handles.aviobj, did you use
guidata(hObject, handles)
to update the master copy of the handles structure?
8 comentarios
Walter Roberson
el 17 de Feb. de 2013
Make sure you use VideoReader with capital V and capital R, not lower-case R.
Más respuestas (0)
Ver también
Categorías
Más información sobre Image Preview and Device Configuration en Help Center y File Exchange.
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!