簡體   English   中英

Xamarin.Forms 中的 EmguCV 實現

[英]EmguCV implementation in Xamarin.Forms

我需要在我的 Xamarin.Forms 應用程序上使用 EmguCV 提供的人臉檢測功能。 有誰知道如何實現它?

歡迎來到 SO。 這是 XamarinForms 演示的 Hello World。

using System;
using Emgu.CV;
using Emgu.CV.CvEnum;
using Emgu.CV.Structure;

namespace HelloWorld
{
    class Program
    {
        static void Main(string[] args)
        {
            String win1 = "Test Window"; //The name of the window
            CvInvoke.NamedWindow(win1); //Create the window using the specific name

            Mat img = new Mat(200, 400, DepthType.Cv8U, 3); //Create a 3 channel image of 400x200
            img.SetTo(new Bgr(255, 0, 0).MCvScalar); // set it to Blue color

            //Draw "Hello, world." on the image using the specific font
            CvInvoke.PutText(
               img,
               "Hello, world",
               new System.Drawing.Point(10, 80),
               FontFace.HersheyComplex,
               1.0,
               new Bgr(0, 255, 0).MCvScalar);


            CvInvoke.Imshow(win1, img); //Show the image
            CvInvoke.WaitKey(0);  //Wait for the key pressing event
            CvInvoke.DestroyWindow(win1); //Destroy the window if key is pressed
        }
    }
}

您可以參考GitHub 工程官方文檔來修改您工程中的代碼。

===============================更新================== ================

如果想在 Xamrin forms 中使用 EmguCV,您可以在項目中安裝Emgu.CV nuget package。 並參考這篇文章開始。

在此處輸入圖像描述

暫無
暫無

聲明:本站的技術帖子網頁,遵循CC BY-SA 4.0協議,如果您需要轉載,請注明本站網址或者原文地址。任何問題請咨詢:yoyou2525@163.com.

 
粵ICP備18138465號  © 2020-2024 STACKOOM.COM