How to save webcam image in gui to a certain folder without push button

6 次查看(过去 30 天)
I have interfaced webcam with matlab gui and able to take images. I have two push buttons Preview & Take Image. I want to take image with "Take Image" push button & my taken images to be stored with my desired names and folder as we do in imsave normally but here I am unable.Can anyone help me, the closest was below but it is introducing new push button.
function pbTP_Callback(hObject, eventdata, handles)
vid = videoinput('winvideo', 1, 'YUY2_1024x768');
vid.FramesPerTrigger = 1;
vid.ReturnedColorspace = 'rgb';
triggerconfig(vid, 'manual');
vidRes = get(vid, 'VideoResolution');
imWidth = vidRes(1);
imHeight = vidRes(2);
nBands = get(vid, 'NumberOfBands');
hImage = image(zeros(imHeight, imWidth, nBands), 'parent', handles.axPreview)
preview(vid, hImage);
start(vid);
pause(5);
trigger(vid);
stoppreview(vid);
im1 = getdata(vid);
imwrite(im1, 'myimage.jpg');
  8 个评论
Geoff Hayes
Geoff Hayes 2016-7-26
According to imsave, it creates a Save Image tool in a separate figure that is associated with the image in the current figure, called the target image. Presumably your current figure is the GUI and so this is probably not the correct approach. Try using either imputfile or uiputfile which will allow you (or the user) to select the filename and folder where he or she wishes to save the file.
Snowleopard
Snowleopard 2016-7-27
Thanks for your support.I tried with uiputfile and got the save window as expected but file was not saved and got following errors as well.
??? Error using ==> imaqdevice.preview at 179 Multiple VIDEOINPUT objects cannot access the same device simultaneously.
Error in ==> gui_4>pbTP_Callback at 114 preview(vid, hImage);
Error in ==> gui_mainfcn at 96 feval(varargin{:});
Error in ==> gui_4 at 42 gui_mainfcn(gui_State, varargin{:});
Error in ==> @(hObject,eventdata)gui_4('pbTP_Callback',hObject,eventdata,guidata(hObject))
??? Error using ==> pause Error while evaluating uicontrol Callback

请先登录,再进行评论。

采纳的回答

Geoff Hayes
Geoff Hayes 2016-7-27
snowleopoard - Did you get an error message when you tried to save the file, and if so, what was it?
I suspect that the above error is when you pressed the Take Image button a second time. Is that the case? If so, the problem is probably due to
vid = videoinput('winvideo', 1, 'YUY2_1024x768');
You are creating a new video input object without deleting the previous one (created the first time you pressed the button). Either add a line to delete your object before the callback exits (so after you've saved to file), or use a single object that you create once and save to your handles object. Something like
function pbTP_Callback(hObject, eventdata, handles)
if ~isfield(handles,'vidObject')
handles.vidObject = videoinput('winvideo', 1, 'YUY2_1024x768');
guidata(hObject,handles);
end
% now do same as what you have written, replacing vid with handles.vidObject
The above code checks to see if the vidObject has already been created and is part of the handles structure. If not, it creates it and saves it to handles using guidata.
  5 个评论
Snowleopard
Snowleopard 2016-8-10
编辑:Geoff Hayes 2016-8-10
I tried above but resulted in errors,
??? Error using ==> str2double
Too many input arguments.
Error in ==> RM_1>PBProcess_Callback at 192
pause(str2double(handles.edit2,'String'));
Error in ==> gui_mainfcn at 96
feval(varargin{:});
Error in ==> RM_1 at 42
gui_mainfcn(gui_State, varargin{:});
I added a push button (pushbutton_9) i-e whenever I push the button value should be updated in pause but again could not run, Pushbutton 9 callback
x = get(handles.edit2,'String');
y=str2double(x)
setappdata(handles.edit1, 'y', y)
Pb_process callback
y = getappdata(handles.pushbutton9 , 'y')
pause(y);
Error in ==> RM_1>pushbutton9_Callback at 300
setappdata(handles.edit1, 'y', y)
Error in ==> gui_mainfcn at 96
feval(varargin{:});
Error in ==> RM_1 at 42
gui_mainfcn(gui_State, varargin{:});
Error in ==> @(hObject,eventdata)RM_1('pushbutton9_Callback',hObject,eventdata,guidata(hObject))
??? Error while evaluating uicontrol Callback
This option does not stop pause & in command window it update y=[] but does not follow the time which I enter, Can you plz correct it
Geoff Hayes
Geoff Hayes 2016-8-10
That's my mistake. Change
pause(str2double(handles.edit2,'String'))
to
pause(str2double(get(handles.edit2,'String')))
Note the missing get.

请先登录,再进行评论。

更多回答(0 个)

Community Treasure Hunt

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

Start Hunting!

Translated by