Hướng dẫn kết nối camera với Matlab

3 1.4K 7
Hướng dẫn kết nối camera với Matlab

Đang tải... (xem toàn văn)

Thông tin tài liệu

Hướng dẫn kết nối camera với Matlabmột số câu lệnh sử dụng để kết nối với camera trong Matlabkhiển camera bằng Matlabcamvacamva(view_angle)camva(mode)camva(auto)camva(manual)camva(axes_handle,...)videoinput(adaptorname, deviceID)

camva Set or query camera view angle Syntax camva camva(view_angle) camva('mode') camva('auto') camva('manual') camva(axes_handle, ) Description camva returns the camera view angle setting in the current axes. The camera view angle determines the field of view of the camera. Larger angles produce a smaller view of the scene. Implement zooming by changing the camera view angle. camva(view_angle) sets the view angle in the current axes to the specified value. Specify the view angle in degrees. camva('mode') returns the current value of the camera view angle mode, which can be either auto (the default) or manual. camva('auto') sets the camera view angle mode to auto. camva('manual') sets the camera view angle mode to manual. camva(axes_handle, ) performs the set or query on the axes identified by the first argument, axes_handle. When you do not specify an axes handle, camva operates on the current axes. Tips The camva function sets or queries values of the axes object CameraViewAngle and CameraViewAngleMode properties. When the camera view angle mode is auto, the camera view angle adjusts so that the scene fills the available space in the window. If you move the camera to a different position, the camera view angle changes to maintain a view of the scene that fills the available area in the window. Setting a camera view angle or setting the camera view angle to manual disables the MATLAB stretch-to-fill feature (stretching of the axes to fit the window). This means setting the camera view angle to its current value, camva(camva) can cause a change in the way the graph looks. See axes for more information. Examples Create two pushbuttons, one that zooms in and another that zooms out: % Set the range checking in the callback statements to keep % the values for the camera view angle in the range greater % than zero and less than 180. uicontrol('Style','pushbutton', 'String','Zoom In', 'Position',[20 20 60 20], 'Callback','if camva <= 1;return;else;camva(camva-1);end'); uicontrol('Style','pushbutton', 'String','Zoom Out', 'Position',[100 20 60 20], 'Callback','if camva >= 179;return;else;camva(camva+1);end'); % Now create a graph to zoom in and out on: surf(peaks); how to interface a digital camera with MATLAB for real time image processing    !"#$ %& "#%%% '  ((%( "#)  ((* +,!   &*- * !). /-)!+$ (+  %  * +,!    &*- * !)-0)!+$ (+   &* +,!% *-&* &!%$ (%) ) ) ) ,)() ,(   & .%!, !"( %( ("(  %"( "( )()!$ !). /-)!$ !)-0)!$ &!) )$ -%1 *2(")  % &* 3(* 4 5% *-* $ ( 6-  - ((( *- * $ 7/* #  80 0697 : ;( % $ 2*

Ngày đăng: 13/06/2015, 22:21

Từ khóa liên quan

Mục lục

  • camva

    • Syntax

    • Description

    • Tips

    • Examples

    • how to interface a digital camera with MATLAB for real time image processing

Tài liệu cùng người dùng

Tài liệu liên quan