资源简介
c#写的人脸检测系统,用眼睛和嘴巴轮廓对人脸区域进行定位
代码片段和文件信息
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using WebCam_Capture;
using System.Windows.Forms;
namespace i_rely_solely_on_god
{
class Camera
{
//Variable of WebCamCapture class
private WebCamCapture Cam;
private Form1 Parent;
PictureBox PicFi;
//Initialize camera
public void Init_Cam(Form1 form int W int H PictureBox picFisrt)
{
Parent = form;
PicFi = picFisrt;
Cam = new WebCamCapture();
//Set camera height
Cam.CaptureHeight = H;
//Set camera width
Cam.CaptureWidth = W;
//Refresh picture after avery one milli seconds
Cam.TimeToCapture_milliseconds = 1;
属性 大小 日期 时间 名称
----------- --------- ---------- ----- ----
文件 20480 2007-03-16 17:24 c_shapr_detection\bin\Debug\AForge.dll
文件 110592 2007-03-19 16:12 c_shapr_detection\bin\Debug\AForge.Imaging.dll
文件 28672 2007-03-16 17:24 c_shapr_detection\bin\Debug\AForge.Math.dll
文件 32768 2007-03-04 06:10 c_shapr_detection\bin\Debug\DockingToolbar.dll
文件 13312 2009-06-26 09:03 c_shapr_detection\bin\Debug\i rely solely on god(00001).exe
文件 14848 2009-07-11 15:27 c_shapr_detection\bin\Debug\i rely solely on god.exe
文件 14328 2009-06-26 14:21 c_shapr_detection\bin\Debug\i rely solely on god.vshost(00001).exe
文件 14328 2009-07-11 15:11 c_shapr_detection\bin\Debug\i rely solely on god.vshost.exe
文件 490 2007-07-20 23:03 c_shapr_detection\bin\Debug\i rely solely on god.vshost.exe(00001).manifest
文件 490 2007-07-21 01:33 c_shapr_detection\bin\Debug\i rely solely on god.vshost.exe.manifest
文件 491520 2009-06-24 09:22 c_shapr_detection\bin\Debug\iplab.exe
文件 162 2009-06-26 09:13 c_shapr_detection\bin\Debug\sample25.bmp
文件 462 2009-06-25 19:37 c_shapr_detection\bin\Debug\sample50.bmp
文件 188416 2007-03-04 06:27 c_shapr_detection\bin\Debug\SourceGrid2.dll
文件 135168 2007-03-04 06:13 c_shapr_detection\bin\Debug\SourceLibrary.dll
文件 24576 2009-05-26 17:24 c_shapr_detection\bin\Debug\WebCam_Capture(00001).dll
文件 24576 2009-05-26 17:24 c_shapr_detection\bin\Debug\WebCam_Capture.dll
文件 135168 2007-03-04 06:11 c_shapr_detection\bin\Debug\WeifenLuo.WinFormsUI.dll
文件 1312 2009-05-27 18:25 c_shapr_detection\Camera.cs
文件 8318 2009-07-11 15:27 c_shapr_detection\Face Detection.cs
文件 2299 2009-07-01 12:40 c_shapr_detection\Form1.cs
文件 10924 2009-07-01 12:40 c_shapr_detection\Form1.Designer.cs
文件 6181 2009-07-01 12:40 c_shapr_detection\Form1.resx
文件 6322 2009-07-01 12:07 c_shapr_detection\i rely solely on god.csproj
文件 488 2009-06-23 16:34 c_shapr_detection\i rely solely on god.csproj.user
文件 929 2009-05-23 19:17 c_shapr_detection\i rely solely on god.sln
..A..H. 24576 2009-07-11 15:27 c_shapr_detection\i rely solely on god.suo
文件 512 2009-05-23 19:17 c_shapr_detection\Program.cs
文件 1452 2009-05-23 19:17 c_shapr_detection\Properties\AssemblyInfo.cs
文件 2869 2009-05-23 19:17 c_shapr_detection\Properties\Resources.Designer.cs
............此处省略11个文件信息
评论
共有 条评论