フィルターのクリア

camera interfacing with matlab

1 回表示 (過去 30 日間)
Shivganga
Shivganga 2012 年 4 月 17 日
Hi all, I'm using following code for camera interfacing with matlab.
vid = videoinput('winvideo',1,'YUY2_640x480');%Specifying video output format and size
triggerconfig(vid,'manual');%Configuring Triggering method
set(vid,'framesPerTrigger',1);
set(vid,'TriggerRepeat',Inf);
start(vid);
preview(vid);
pause(2);
set(vid,'ReturnedColorSpace','rgb');
trigger(vid);
im = getdata(vid,1);
rect = [240,320];
im = imcrop(im,rect);
imshow(im);
stop(vid);
delete(vid);
clear vid;
This code runs perfect till imshow(im) but i want the camera to stop afterwards but it's not working properly.
individually when i'm doing this procedure camera starting, snap and camera stopping it works perfect but not altogather.

回答 (0 件)

Community Treasure Hunt

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

Start Hunting!

Translated by