How to save webcam image in gui to a certain folder without push button
2 次查看(过去 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
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.
采纳的回答
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 个评论
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!