การต่อกับกล้อง webcam

a = imaqhwinfo;
[camera_name, camera_id, format] = getCameraInfo(a);

% Capture the video frames using the videoinput function
% You have to replace the resolution & your installed adaptor name.
vid = videoinput(camera_name, camera_id, format);

% Set the properties of the video object
set(vid, 'FramesPerTrigger', Inf);
set(vid, 'ReturnedColorspace', 'rgb')
vid.FrameGrabInterval = 5;

%start the video aquisition here
start(vid)

% Set a loop that stop after 100 frames of aquisition
newferame = 200;

countnum = 0;
while(vid.FramesAcquired<=newferame)
   
    % Get the snapshot of the current frame
    data = getsnapshot(vid);
    imshow(data)
end

สามารถดาว์นโหลดได้ที่
www.dropbox.com
usename : ibookengineering@gmail.com
password: poop49403405
และที่
usename : ibookengineering@hotmail.co.uk
password: poop49403405


ชื่อไฟล์ที่ชึ้นต้นด้วยคำว่า "ซีดีนี้ประกอบด้วย..."

Comments

Popular Posts