Filter löschen
Filter löschen

Guide Gui to preview webcam in axes, capture and show the image in axes

6 Ansichten (letzte 30 Tage)
function simple_gui_OpeningFcn(hObject, eventdata, handles, varargin)
handles.output =hObject;
axes(handles.FaceCameraaxes);
vid =videoinput('macvideo','FaceTime HD Camera');
hImage=image(zeros(1280,720,3),'Parent',handles.FaceCameraaxes);
preview(vid,hImage);
my webcam resolution is 1280,720, not fitting in the axes;
  1 Kommentar
Muammar Khadafi
Muammar Khadafi am 21 Aug. 2017
function lat1_OpeningFcn(hObject, eventdata, handles, varargin)
handles.output = hObject;
axes(handles.axes1);
vid =webcam('gent1',1);
hImage=image(zeros(720,1280,3),'Parent',handles.axes1);
preview(vid,hImage);
guidata(hObject, handles);
Path but can not get out of form?

Melden Sie sich an, um zu kommentieren.

Antworten (2)

Szabó Dániel
Szabó Dániel am 28 Feb. 2017
Hi!
This is the correct form: hImage=image(zeros( 720,1280,3),'Parent',handles.FaceCameraaxes);
Hope, it will be useful for somebody.

yen phuong
yen phuong am 23 Mai 2017
Thanks

Kategorien

Mehr zu Migrate GUIDE Apps finden Sie in Help Center und File Exchange

Community Treasure Hunt

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

Start Hunting!

Translated by