How to create a custom preview window for MATLAB webcam?
조회 수: 16 (최근 30일)
이전 댓글 표시
MathWorks Support Team
2017년 9월 21일
편집: MathWorks Support Team
2024년 9월 10일
I am using the webcam function from "MATLAB Support Package for USB Webcams" to acquire images from my webcam.
The preview function creates a standalone preview window, but how can I create a preview image in a custom window, GUI, or app?
채택된 답변
MathWorks Support Team
2024년 9월 10일
편집: MathWorks Support Team
2024년 9월 10일
To create a custom preview window for webcam you can use the following example as a starting point. This code creates a figure, axes, and image elements programmaticaly, but the same configuration would apply for an GUI or app created with GUIDE.
%% Example WEBCAM custom preview window for MATLAB R2017a
%% List connected webcams
webcamlist
%% Connect to webcam
c = webcam(1);
%% Setup preview window
fig = figure('NumberTitle', 'off', 'MenuBar', 'none');
fig.Name = 'My Camera';
ax = axes(fig);
frame = snapshot(c);
im = image(ax, zeros(size(frame), 'uint8'));
axis(ax, 'image');
%% Start preview
preview(c, im)
setappdata(fig, 'cam', c);
fig.CloseRequestFcn = @closePreviewWindow_Callback;
%% Local functions
function closePreviewWindow_Callback(obj, ~)
c = getappdata(obj, 'cam');
closePreview(c)
delete(obj)
end
댓글 수: 1
Andrei
2018년 7월 26일
편집: Andrei
2018년 7월 26일
With the way webcam preview is currently working (as of MATLAB R2018a), you need to specifically assign the figure's CloseRequestFcn to a callback function which closes the figure with close(hFig) or delete(hFig) as in the example above, where hFig is the preview figure handle. If you are previewing multiple cameras in different figures, you also need to do this for the CloseRequestFcn of each of the multiple preview figures.
추가 답변 (1개)
MathWorks MATLAB Hardware Team
2021년 5월 4일
You can also try using the Acquire Webcam Image MATLAB Live Task. For more details refer to the following answer https://www.mathworks.com/matlabcentral/answers/821010-how-do-i-view-the-live-video-feed-and-capture-images-from-my-usb-webcam-in-matlab
댓글 수: 0
참고 항목
Community Treasure Hunt
Find the treasures in MATLAB Central and discover how the community can help you!
Start Hunting!