Giter Site home page Giter Site logo

xinfushe / opencvsharp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from shimat/opencvsharp

0.0 2.0 0.0 967.34 MB

.NET Framework wrapper for OpenCV

License: Other

C 2.56% C++ 40.84% Objective-C 0.12% PowerShell 0.12% C# 56.06% Visual Basic 0.25% CMake 0.05%

opencvsharp's Introduction

#OpenCvSharp Cross platform wrapper of OpenCV for .NET Framework.

OpenCVを.NET Frameworkから利用するための、クロスプラットフォームで動作するラッパーです。

Installation

NuGet

If you have Visual Studio 2012 or later, it is recommended to use NuGet. Search 'opencvsharp' on the NuGet Package Manager.

Downloads

If you do not use NuGet, get DLL files from the release page.

Requirements

On Windows, OpenCvSharp requires OpenCV DLL files built with VC++2013 (msvcr120.dll). The official pre-built DLL files in build/[x86 or x64]/vc12/bin are suitable.

Documents

http://shimat.github.io/opencvsharp/

Usage

For more details, see the Wiki page.

// Edge detection by Canny algorithm
using OpenCvSharp;
// using OpenCvSharp.CPlusPlus;  //for OpenCvSharp2

class Program 
{
    static void Main() 
    {
        Mat src = new Mat("lenna.png", ImreadModes.GrayScale);   // OpenCvSharp 3.x
        //Mat src = new Mat("lenna.png", LoadMode.GrayScale); // OpenCvSharp 2.4.x
        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. It can run on any platform which Mono supports (e.g. Linux).

  • オリジナルのC/C++コードと可能な限り似た記述ができるように設計しています。
  • 多くのクラスがIDisposableインターフェイスを実装しているので、ネイティブリソース管理が容易です。
  • オブジェクト指向な書き方を強制しません。OpenCVのネイティブの関数をそのままの形式で呼べます。
  • GDI+やWPFとの相互利用が可能です。OpenCVのMat/IplImageとGDI+のBitmapやWPFのWriteableBitmapとの変換機能があります。
  • Monoに対応しています。Linux等のクロスプラットフォームで動作します。

License

OpenCvSharp is licensed under the BSD 3-Clause License. See LICENSE.txt.

OpenCvSharp.Blob uses cvBlob to implement blob extraction.

opencvsharp's People

Contributors

shimat avatar kojikobayashi avatar themetalmonkey avatar neoxeo avatar yukoba avatar codingtornado avatar inohiroki avatar peterwishart avatar bitdeli-chef avatar bobanaut avatar bcsanches avatar marek-stoj avatar tekezo avatar dkpark89 avatar ylv-io avatar mohammedari avatar sebtoun avatar smallcopse avatar

Watchers

James Cloos avatar xinfushe avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.