你的位置:首页 > 软件开发 > ASP.net > C# 通过Emgu CV 人脸检测

C# 通过Emgu CV 人脸检测

发布时间:2015-06-01 00:01:20
1、Emgu CV使用opencv人脸检测,C#使用代码(转载于Emgu CV Example):using System;using System.Collections.Generic;using System.Diagnostics;using System.Drawing ...

1、Emgu CV使用opencv人脸检测,C#使用代码(转载于Emgu CV Example):

using System;using System.Collections.Generic;using System.Diagnostics;using System.Draget='_blank'>wing;using Emgu.CV;using Emgu.CV.Structure;#if !IOSusing Emgu.CV.Cuda;#endifnamespace FaceDetection{  public static class DetectFace  {   public static void Detect(    Mat image, String faceFileName, String eyeFileName,     List<Rectangle> faces, List<Rectangle> eyes,     bool tryUseCuda, bool tryUseOpenCL,    out long detectionTime)   {     Stopwatch watch;         #if !IOS     if (tryUseCuda && CudaInvoke.HasCuda)     {      using (CudaCascadeClassifier face = new CudaCascadeClassifier(faceFileName))      using (CudaCascadeClassifier eye = new CudaCascadeClassifier(eyeFileName))      {        watch = Stopwatch.StartNew();        using (CudaImage<Bgr, Byte> gpuImage = new CudaImage<Bgr, byte>(image))        using (CudaImage<Gray, Byte> gpuGray = gpuImage.Convert<Gray, Byte>())        {         Rectangle[] faceRegion = face.DetectMultiScale(gpuGray, 1.1, 10, Size.Empty);         faces.AddRange(faceRegion);         foreach (Rectangle f in faceRegion)         {           using (CudaImage<Gray, Byte> faceImg = gpuGray.GetSubRect(f))           {            //For some reason a clone is required.            //Might be a bug of CudaCascadeClassifier in opencv            using (CudaImage<Gray, Byte> clone = faceImg.Clone(null))            {              Rectangle[] eyeRegion = eye.DetectMultiScale(clone, 1.1, 10, Size.Empty);              foreach (Rectangle e in eyeRegion)              {               Rectangle eyeRect = e;               eyeRect.Offset(f.X, f.Y);               eyes.Add(eyeRect);              }            }           }         }        }        watch.Stop();      }     }     else     #endif     {      //Many opencl functions require opencl compatible gpu devices.       //As of opencv 3.0-alpha, opencv will crash if opencl is enable and only opencv compatible cpu device is presented      //So we need to call CvInvoke.HaveOpenCLCompatibleGpuDevice instead of CvInvoke.HaveOpenCL (which also returns true on a system that only have cpu opencl devices).      CvInvoke.UseOpenCL = tryUseOpenCL && CvInvoke.HaveOpenCLCompatibleGpuDevice;      //Read the HaarCascade objects      using (CascadeClassifier face = new CascadeClassifier(faceFileName))      using (CascadeClassifier eye = new CascadeClassifier(eyeFileName))      {        watch = Stopwatch.StartNew();        using (UMat ugray = new UMat())        {         CvInvoke.CvtColor(image, ugray, Emgu.CV.CvEnum.ColorConversion.Bgr2Gray);         //normalizes brightness and increases contrast of the image         CvInvoke.EqualizeHist(ugray, ugray);         //Detect the faces from the gray scale image and store the locations as rectangle         //The first dimensional is the channel         //The second dimension is the index of the rectangle in the specific channel         Rectangle[] facesDetected = face.DetectMultiScale(           ugray,           1.1,           10,           new Size(20, 20));                    faces.AddRange(facesDetected);         foreach (Rectangle f in facesDetected)         {           //Get the region of interest on the faces           using (UMat faceRegion = new UMat(ugray, f))           {            Rectangle[] eyesDetected = eye.DetectMultiScale(              faceRegion,              1.1,              10,              new Size(20, 20));                        foreach (Rectangle e in eyesDetected)            {              Rectangle eyeRect = e;              eyeRect.Offset(f.X, f.Y);              eyes.Add(eyeRect);            }           }         }        }        watch.Stop();      }     }     detectionTime = watch.ElapsedMilliseconds;   }  }}
加载人脸识别模型可以全局初始化,减小耗时。

using (CudaCascadeClassifier face = new CudaCascadeClassifier(faceFileName))

 

海外公司注册、海外银行开户、跨境平台代入驻、VAT、EPR等知识和在线办理:https://www.xlkjsw.com

原标题:C# 通过Emgu CV 人脸检测

关键词:C#

C#
*特别声明:以上内容来自于网络收集,著作权属原作者所有,如有侵权,请联系我们: admin#shaoqun.com (#换成@)。

可能感兴趣文章

我的浏览记录