OpenCvSharp尝试
Posted tangchun
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了OpenCvSharp尝试相关的知识,希望对你有一定的参考价值。
OpenCvSharp是封装了OpenCV的.net版本
项目地址:https://github.com/shimat/opencvsharp
简单使用:
1、NuGet安装
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:TestOpenCvDemoOpenCvDemop.jpg", ImreadModes.Color); Cv2.ImShow("Demo", source); Cv2.WaitKey(0); } } }
运行结果:
以上是关于OpenCvSharp尝试的主要内容,如果未能解决你的问题,请参考以下文章
如何在 Xamarin Forms 中打开图像并将其与 Emgu Cv/OpenCvSharp 一起使用?
Visual Studio2015 Nuget安装OpencvSharp包
OpenCVSharp::FindContours 错误:“total()==0||data!=NULL“