欢迎您访问程序员文章站本站旨在为大家提供分享程序员计算机编程知识!
您现在的位置是: 首页  >  IT编程

OpenCvSharp尝试

程序员文章站 2022-03-25 08:15:30
OpenCvSharp是封装了OpenCV的.net版本 项目地址:https://github.com/shimat/opencvsharp 简单使用: 1、NuGet安装 2、使用OpenCvSharp打开一张图片,需要添加 OpenCvSharp 命名空间 运行结果: ......

 

opencvsharp是封装了opencv的.net版本

项目地址:

简单使用:

1、nuget安装

OpenCvSharp尝试

2、使用opencvsharp打开一张图片,需要添加 opencvsharp 命名空间

using system;
using system.collections.generic;
using system.linq;
using system.text;
using system.threading.tasks;
using opencvsharp;

namespace opencvdemo
{
    class program
    {
        static void main(string[] args)
        {
            mat source = new mat(@"f:\test\opencvdemo\opencvdemo\p.jpg", imreadmodes.color);
            cv2.imshow("demo", source);
            cv2.waitkey(0);

        }
    }
}

运行结果:

OpenCvSharp尝试