How to create a bounding box in webcam preview and capture image in that bounding box?

4 ビュー (過去 30 日間)
This is how I want to do it:
1. Determine positions in webcam preview
2. Create bounding box on that positions in webcam preview
3. Place hand in bounding box
4. Capture it

採用された回答

Image Analyst
Image Analyst 2014 年 2 月 4 日
You can use ginput, rectangle(), imrect() or other functions to determine locations in the image. Then use plot() to create the box. Then call getsnapshot, which will get the full image but you then crop it with imcrop() to limit it to just the bounding box.
  18 件のコメント
Image Analyst
Image Analyst 2020 年 5 月 6 日
Did you install the webcam add-on? See the Add-ons tab. Home->Addons-> Get Addons -> MATLAB support package for USB webcams.
What does this show:
webcamlist % No semicolons.
mycam=webcam
Heloise BOTREL
Heloise BOTREL 2020 年 5 月 7 日
Ans :
webcamlist % No semicolons.
mycam=webcam
ans =
1×1 cell array
{'HP TrueVision HD'}
mycam =
webcam with properties:
Name: 'HP TrueVision HD'
AvailableResolutions: {1×6 cell}
Resolution: '640x480'
Exposure: -6
Sharpness: 2
Gain: 4
Contrast: 32
WhiteBalance: 4000
Saturation: 64
Hue: 0
Gamma: 120
ExposureMode: 'auto'
Brightness: 128
BacklightCompensation: 1
WhiteBalanceMode: 'auto'
I have this package and "Image Acquisition Toolbox Support Package for OS generic Video Interface" and 'Image Acquisition Toolbox"

サインインしてコメントする。

その他の回答 (2 件)

Aude Menet
Aude Menet 2020 年 5 月 14 日
編集済み: Aude Menet 2020 年 5 月 14 日
Error using videoinpu (line 219)
Invalid ADAPTATORNAME specified. Type 'imaqhwinfo' for a list of available
ADAPTORNAMEs. Image acquisition adaptors may be available as downloadable
support packages. Open Add-Ons Explorer to install additional adaptors.
Error in cameratest (line 20)
videoObject=videoinput('winvideo');
Can someone help me to fix these errors please ?
  4 件のコメント
Image Analyst
Image Analyst 2020 年 5 月 15 日
Have you downloaded the webcam add on? Use the Add-Ons explorer from the Home tab of the tool ribbon and type in webcam.
Aude Menet
Aude Menet 2020 年 5 月 15 日
Yes I have dowloaded them since I'm trying to make my webcam work through matlab.

サインインしてコメントする。


Image Analyst
Image Analyst 2020 年 5 月 15 日
When you do this, do you get a live video window that pops up? I do
webcamlist
mycam = webcam
methods(mycam)
mycam.preview
  2 件のコメント
Aude Menet
Aude Menet 2020 年 5 月 15 日
Yes I do, it works well !
Image Analyst
Image Analyst 2020 年 5 月 15 日
Now try the snapshot() method:
% Display a list of installed cameras.
webcamlist
% Get an object linked to the webcam.
mycam = webcam
% Show what things this camera can do
methods(mycam)
properties(mycam)
% Open live video window.
mycam.preview
% Prompt user to snap a photo.
promptMessage = sprintf('Do you want to snap a photo,\nor Quit?');
titleBarCaption = 'Continue?';
buttonText = questdlg(promptMessage, titleBarCaption, 'Snap', 'Quit', 'Snap');
if contains(buttonText, 'Quit', 'IgnoreCase', true)
return;
end
% Snap the photo.
rgbImage = mycam.snapshot;
% Close live video window.
mycam.closePreview
% Display image
imshow(rgbImage);
caption = sprintf('Here is the photo you snapped at %s', datestr(now));
title(caption, 'FontSize', 20);
% Maximize figure.
g = gcf;
g.WindowState = 'maximized';

サインインしてコメントする。

Community Treasure Hunt

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

Start Hunting!

Translated by