• 大小: 543B
    文件类型: .rar
    金币: 1
    下载: 0 次
    发布日期: 2021-05-16
  • 语言: Matlab
  • 标签: MATLAB  摄像头  

资源简介

之前写了一篇《(来点有用的)MATLAB摄像头实时图像处理 》,为了避免网友学习中出现各类问题。现将测试代码上传,供使用。谢谢交流

资源截图

代码片段和文件信息

% MATLAB摄像头实时图像处理
% 20190429
% by HPC_ZY

clear;close all;clc

% 查看适配器
disp(imaqhwinfo)

% 查看设备及其支持的格式
info = imaqhwinfo(‘winvideo‘);
disp(info.DeviceInfo.SupportedFormats)

% 设置图像格式并获取设备数据
obj = videoinput(‘winvideo‘1‘MJPG_640x480‘);
h = preview(obj);

% 实时图像处理
figure
while ishandle(h)
    frame=getsnapshot(obj);
    % frame=ycbcr2rgb(frame); % 如果为 YUY2 格式
    imedge = edge(rgb2gray(frame)‘log‘);
    subplot(121)imshow(frame);
    subplot(122)imshow(imedge);
    drawnow;  % 实时更新图像
    
end
delete(obj);                %删除对象
close


 属性            大小     日期    时间   名称
----------- ---------  ---------- -----  ----

     文件        632  2019-04-29 21:17  MATLAB_Camera.m

----------- ---------  ---------- -----  ----

                  632                    1


评论

共有 条评论