GithubHelp home page GithubHelp logo

yigedakoudaiya / opencvsharp Goto Github PK

View Code? Open in Web Editor NEW

This project forked from shimat/opencvsharp

1.0 2.0 0.0 35.7 MB

.NET Framework wrapper for OpenCV

License: BSD 3-Clause "New" or "Revised" License

PowerShell 0.16% CMake 0.09% C# 90.73% C++ 7.58% C 1.43%

opencvsharp's Introduction

OpenCvSharp Build status GitHub license

Cross platform wrapper of OpenCV for .NET Framework.

Old versions of OpenCvSharp is maintained in opencvsharp_2410.

Installation

NuGet

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

Package NuGet
All-in-one package - bundles native OpenCV DLLs NuGet version
Minimum package NuGet version
Development Build Package https://ci.appveyor.com/nuget/opencvsharp

Downloads

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

Requirements

OpenCvSharp may not work on UWP and Unity platform. Please consider using OpenCV for Unity

Documents

https://shimat.github.io/opencvsharp_docs/index.html

Usage

For more details, see the Wiki page.

// 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. It can run on any platform which Mono supports (e.g. Linux).

OpenCvSharp Build Instructions

  • Install Visual Studio 2017 or later
    • VC++ features are required.
  • Get all submodules
git submodule update --init --recursive
  • Build tesseract and leptonica
    • Open tesseract/tesseract.sln and build
  • Build OpenCvSharp
    • Open OpenCvSharp.sln and build

License

Licensed under the BSD 3-Clause License.

opencvsharp's People

Contributors

shimat avatar takuya-takeuchi avatar themetalmonkey avatar kojikobayashi avatar neoxeo avatar yukoba avatar codingtornado avatar tknhs avatar peterwishart avatar inohiroki avatar smallcopse avatar sebtoun avatar mohammedari avatar ylv-io avatar flow2me avatar dkpark89 avatar thadhouse avatar tekezo avatar marek-stoj avatar pimms avatar jasonmnemonic avatar liangzugeng avatar bcsanches avatar bobanaut avatar bitdeli-chef avatar

Stargazers

 avatar

Watchers

James Cloos avatar  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.