您现在的位置是:网站首页> C#技术
OpenCVSharp
- C#技术
- 2024-08-19
- 1030人已阅读
摘要
OpenCVSharp
OpenCV基础介绍
OpenCVSharp,一个对OpenCV 库的C#实现,可能是由于内容开始是网络地址(http://...)完整的英文词截取后不能换行造成 为避免代码造成手机端排版的混乱,可适当增加文字描述,将代码往后推移
https://github.com/shimat/opencvsharp
编译OpenCVSharp的程序时候一定要制定目标平台式x86还是x64
OpenCVSharp使用
相较于SharperCV与OpenCVDotNet,OpenCvSharp直接封装了更多的OpenCV方法,降低学习难度
输入如下测试代码
using OpenCvSharp;
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using System.Threading.Tasks;
namespace OpenCvSharp_Demo
{
internal class Program
{
static void Main(string[] args)
{
Mat mat = new Mat("test.jpg");
Cv2.ImShow("test.jpg", mat);
Cv2.WaitKey();
Cv2.DestroyAllWindows();
}
}
}