资源简介
一个简单的matlab_gui人脸检测程序,适合初学者。
代码片段和文件信息
close all
clear all
clc
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%reading an image
%I=imread(‘IMG_0141.JPG‘);
% I=imread(‘test1.JPG‘);
I = imread(‘cdm.jpg‘);
%I = imread(‘IMG_0143.JPG‘);
%I = imread(‘IMG_0146.JPG‘);
[IxIyIz]=size(I);
if Ix>400&Iy>300
%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%reducing the scale of image let the high is 400
I=imresize(I[400Iy*400/Ix]‘nearest‘);
end
% figure
% imshow(I)
% title(‘normal image‘)
%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%%
%%%%skin detection
I=double(I); %converting the integer into decimal fraction
[huesv]=rgb2hsv(I); %converting RGB space into HSV space
cb=0.148*I(::1)-0.291*I(::2)+0.439*I(::3)+128;%converting RGB space into YCrCb space
cr=0.439*I(::1)-0.368*I(:
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 74021 2011-05-03 21:46 cdm.jpg
文件 2956 2009-05-13 22:10 face_detection.asv
文件 2978 2011-06-23 19:03 face_detection.m
----------- --------- ---------- ----- ----
79955 3
相关资源
- gui 带GUI界面
-
myaudiopla
yer 使用Matlab GUI实现的音频 - wavplay 基于matlab GUI界面的播放器
- V1.0 串口通信程序
-
vision_ba
sed_barcode_reader - VideoFaceDetect 使用matlab调用opencv做成的
- SNR(complete) 基于matlab的GUI的GPS捕获
- ImageMatlab Matlab数字图像处理
- Yale_5G Yale
- matlab_audio 基于matlab GUI的音频信息处理
- MATLAB_Serial
- matlab-GUI 本人编写的matlab的GUI程序
- FaceRecogTool 基于稀疏表示的人脸识别系
- viola_jones 这个是最成熟的人脸检测算
- monitor matlab做的GUI
- serial_communication MATLAB
- PCALDA
- handwritingPrecognitionPGUI 基于BP神经网络
- shuiguo 自己做的水果识别matlab程序以及
- CBIR-matlab-GUI
- matlab-face-detection pca+svm 与pca +adaboost
- guided-filter 指导滤波
- PCA-Face-detection-and-recognition PCA 人脸检
- chengxu 手指静脉识别的代码
- Matlab-GUI 自编的matlab gui小程序。功能
- Technical-indicators-by-Matlab 用matlab编写了
- Desktop 语音识别
- face_detect 基于肤色的人脸检测matlab程
- texture_GUI 此程序是基于灰度共生矩阵
- detection 基于肤色模型的人脸检测程序
评论
共有 条评论