opencvsharp-master

所属分类:OpenCV
开发工具:C#
文件大小:15986KB
下载次数:62
上传日期:2018-01-27 21:17:07
上 传 者弄江湖
说明:  图片识别及处理,基本标记检测,二值化等等
(Image recognition and processing, basic label detection, two value, and so on)

文件列表:
LICENSE (1506, 2017-12-08)
OpenCvSharp.shfbproj (4687, 2017-12-08)
OpenCvSharp.sln (14976, 2017-12-08)
OpenCvSharp.sln.DotSettings (1775, 2017-12-08)
appveyor.yml (5102, 2017-12-08)
nuget (0, 2017-12-08)
nuget\OpenCvSharp3-AnyCPU.nuspec (7706, 2017-12-08)
nuget\OpenCvSharp3-AnyCPU.props (983, 2017-12-08)
nuget\OpenCvSharp3-WithoutDll.nuspec (7161, 2017-12-08)
nuget\icon (0, 2017-12-08)
nuget\icon\Girl.jpg (15453, 2017-12-08)
nuget\icon\Lenna.ico (30894, 2017-12-08)
nuget\icon\lenna-icon.png (13430, 2017-12-08)
nuget\icon\mandrill-ico.png (12242, 2017-12-08)
nuget\nuget (0, 2017-12-08)
nuget\nuget\NuGet.Config (164, 2017-12-08)
nuget\nuget\NuGet.exe (3957976, 2017-12-08)
nuget\nuget\NuGet.targets (7484, 2017-12-08)
nuget\old (0, 2017-12-08)
nuget\old\OpenCvSharp-x64.nuspec (7065, 2017-12-08)
nuget\old\OpenCvSharp-x86.nuspec (7059, 2017-12-08)
nuget\old\tools-x64 (0, 2017-12-08)
nuget\old\tools-x64\init.ps1 (41, 2017-12-08)
nuget\old\tools-x64\install.ps1 (1842, 2017-12-08)
nuget\old\tools-x64\uninstall.ps1 (51, 2017-12-08)
nuget\old\tools-x86 (0, 2017-12-08)
nuget\old\tools-x86\init.ps1 (41, 2017-12-08)
nuget\old\tools-x86\install.ps1 (2847, 2017-12-08)
nuget\old\tools-x86\uninstall.ps1 (51, 2017-12-08)
nuget\packages.config (64, 2017-12-08)
nuget\tools (0, 2017-12-08)
nuget\tools\init.ps1 (41, 2017-12-08)
nuget\tools\install-AnyCPU.ps1 (2847, 2017-12-08)
... ...

# OpenCvSharp [![Build status](https://ci.appveyor.com/api/projects/status/dvjexft02s6b3re6/branch/master?svg=true)](https://ci.appveyor.com/project/shimat/opencvsharp/branch/master) Cross platform wrapper of OpenCV for .NET Framework. Old versions of OpenCvSharp is maintained in [opencvsharp_2410](https://github.com/shimat/opencvsharp_2410). ## Installation ### NuGet If you have Visual Studio 2012 or later, it is recommended to use [NuGet](http://www.nuget.org/). Search *'opencvsharp3'* on the NuGet Package Manager. | Package | NuGet | |--------------------------------------------------------------|----------------------------------------------------------------------------------------------------------------------------| | OpenCV3.2 All-in-one package - bundles native OpenCV DLLs | [![NuGet version](https://badge.fury.io/nu/OpenCvSharp3-AnyCPU.svg)](https://badge.fury.io/nu/OpenCvSharp3-AnyCPU) | | OpenCV3.2 Minimum package | [![NuGet version](https://badge.fury.io/nu/OpenCvSharp3-WithoutDll.svg)](https://badge.fury.io/nu/OpenCvSharp3-WithoutDll) | ### Downloads If you do not use NuGet, get DLL files from the [release page](https://github.com/shimat/opencvsharp/releases). ## Requirements * [OpenCV 3.2](http://opencv.org/) * [Visual C++ 2015 Redistributable Package](https://www.microsoft.com/en-US/download/details.aspx?id=53840) * [.NET Framework 2.0](http://www.microsoft.com/ja-jp/download/details.aspx?id=1639) or later / [.NET Core](https://www.microsoft.com/net/core#windowsvs2015) / [Mono](http://www.mono-project.com/Main_Page) OpenCvSharp may not work on Unity platform. Please consider using [OpenCV for Unity](https://www.assetstore.unity3d.com/en/#!/content/21088) ## Documents https://shimat.github.io/opencvsharp_docs/index.html ## Usage For more details, see the **[Wiki](https://github.com/shimat/opencvsharp/wiki)** page. ```C# // Edge detection by Canny algorithm using OpenCvSharp; class Program { static void Main() { Mat src = new Mat("lenna.png", ImreadModes.GrayScale); // Mat src = Cv2.ImRead("lenna.png", ImreadModes.GrayScale); Mat dst = new Mat(); Cv2.Canny(src, dst, 50, 200); using (new Window("src image", src)) using (new Window("dst image", dst)) { Cv2.WaitKey(); } } } ``` ## Features * OpenCvSharp is modeled on the native OpenCV C/C++ API style as much as possible. * Many classes of OpenCvSharp implement IDisposable. There is no need to manage unsafe resources. * OpenCvSharp does not force object-oriented programming style on you. You can also call native-style OpenCV functions. * OpenCvSharp provides functions for converting from Mat/IplImage into Bitmap(GDI+) or WriteableBitmap(WPF). * OpenCvSharp can work on [Mono](http://www.mono-project.com/Main_Page). It can run on any platform which [Mono](http://www.mono-project.com/Main_Page) supports (e.g. Linux). ## License OpenCvSharp is licensed under the **BSD 3-Clause License**. See [LICENSE](https://github.com/shimat/opencvsharp/blob/master/LICENSE). OpenCvSharp.Blob uses [cvBlob](https://code.google.com/p/cvblob/) to implement blob extraction.

近期下载者

相关文件


收藏者