资源简介
MATLAB编写程序,通过人眼检测来判断是否疲劳驾驶。有界面,亲测可用
代码片段和文件信息
clc;
clear all;
close all;
%%
load DB
load svm
cl = {‘open‘‘close‘};
dim = [30 60;
30 60
40 65];
delete(imaqfind)
vid=webcam();
videoframe = snapshot(vid);
frameSize = size(videoframe);
videoPlayer = vision.VideoPlayer(‘Position‘ [100 100 [frameSize(2) frameSize(1)]+30]);
% 定位眼睛和嘴
faceDetector = vision.CascadeobjectDetector;
faceDetectorLeye = vision.CascadeobjectDetector(‘EyePairBig‘);
faceDetectorM = vision.CascadeobjectDetector(‘Mouth‘);
tic% 保存当前时间,开始计时
% 初始向量
LC = 0;
RC = 0;
MC = 0;
TF = 0;
TC = 0;
Feature = [];
c1p = 1;
species = ‘Non-Fatigue‘;%识别疲劳与否
for ii = 1:600 %设置频率为600帧
im=snapshot(vid); % 采集图片
imshow(im)
subplot(34[1 2 5 6 9 10]);
imshow(im)
%脸部定位
bbox = step(faceDetector im);
if ~isempty(bbox);
bbox = bbox(1:);%循环,直到检测成功
% 画框
rectangle(‘Position‘bbox‘edgecolor‘‘r‘);
S = skin_seg2(im);
% 分离皮肤区域
bw3 = cat(3SSS);
% 原始图像与输出结果相乘
Iss = double(im).*bw3;
Ic = imcrop(imbbox);
Ic1 = imcrop(Issbbox);%剪切
subplot(34[3 4]);
imshow(uint8(Ic1))
bboxeye = step(faceDetectorLeye Ic); %同理定位眼睛
if ~isempty(bboxeye);
bboxeye = bboxeye(1:);
Eeye = imcrop(Icbboxeye);
%画框
rectangle(‘Position‘bboxeye‘edgecolor‘‘y‘);
else
disp(‘Eyes not detected Please adapt to your posion‘)%输出
end
if isempty(bboxeye)
continue;%循环
end
Ic(1:bboxeye(2)+2*bboxeye(4)::) = 0;
% 同理定位嘴
bboxM = step(faceDetectorM Ic);
if ~isempty(bboxM);
bboxMtemp = bboxM;
if ~isempty(bboxMtemp)
bboxM = bboxMtemp(1:);
Emouth = imcrop(IcbboxM);
% 画框
rectangle(‘Position‘bboxM‘edgecolor‘‘y‘);
else
disp(‘Mouth not detected Please adapt your posion‘)
continue;
end
else
disp(‘Mouth not detected‘)
continue;
end
[nrencek ] = size(Eeye);
Leye = Eeye(:1:round(nce/2):);
Reye = Eeye(:round(nce/2+1):end:);
subplot(347)
imshow(edge(rgb2gray(Leye)‘sobel‘));%sobel边缘算子
subplot(348)
imshow(edge(rgb2gray(Reye)‘sobel‘));
Emouth3 = Emouth;
Leye = rgb2gray(Leye);
Reye = rgb2gray(Reye);
Emouth = rgb2gray(Emouth);
X = Emouth(:);
[nr1 nc1 ] = size(Emouth);
cid = kmeans(double(X)2‘emptyaction‘‘drop‘);
kout = reshape(cidnr1nc1); %调整矩阵
subplot(34[1112]);
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 509 2017-06-06 14:18 match_DB.m
文件 152 2019-08-07 22:35 readme.txt
文件 495 2017-06-06 14:17 skin_seg2.m
文件 1119 2016-11-01 22:05 svm.mat
文件 185709 2016-11-01 22:05 DB.mat
文件 4935 2017-06-06 13:50 main.m
----------- --------- ---------- ----- ----
192919 6
相关资源
- Kruskal算法 matlab实现
- labview与matlab接口
- DSSS matlab仿真程序
- matlab绘制线阵方向图
- MATLAB曲线拟合代码
- matlab在通信中的应用代码
- 最小功率路由matlab仿真
- 数字图像处理图像分割matlab算法代码
- 系统仿真实验matlab_中国石油大学
- Butterworth滤波器Matlab代码
- 阵列信号处理的理论和应用原书的m
- 基于Matlab的有限元程序
- 基于matlab,gui的人脸识别(PCA)
- MATLAB在时间序列建模预测及程序代码
- matlab实现BP预测数据
- 滑模变结构控制MATLAB仿真第3版:基本
- matlab读取raw格式文件
- 添加回声matlab
- Matlab三边交换调整法解决哈密顿回路
- 8层小波包分解的matlab实现
- 水系提取算法D8的matlab实现
- QPSK调制解调 科斯塔斯环载波同步 加
- matlab读取视频背景程序
- 宽带相控阵天线matlab代码
- MATLAB2010a汉化和无日期限制LIC.zip
- 基于Matlab的大型火电机组一次调频特
- matlab图像复原(逆滤波、维纳滤波等
- 使用Matlab和CCS实现FIR滤波器的设计
- 基于MATLAB的状态反馈的极点配置
- FSK理论误码率误比特率计算matlab文件
评论
共有 条评论