C#기반 openCV 2.4.5 사용하기
- Library/opencv
- 2021. 1. 26.
01. 필요한 도구
OpenCVSharp : http://code.google.com/p/opencvsharp/downloads/list
OpenCV Site : http://opencv.org/
CMake : http://www.cmake.org/cmake/resources/software.html
02. C# 기반 콘솔 프로그램 생성
References>추가
- OpenCVSharp 에서 다운 받은 파일 중 "OpenCVSharp.dll" 파일을 추가
03. Code
using System; using System.Collections.Generic; using System.Linq; using System.Text; using OpenCvSharp; namespace CsharpEx2 { class Program { static void Main(string[] args) { IplImage src = Cv.LoadImage("test.jpg"); Cv.ShowImage("test", src); Cv.WaitKey(0); } } }
간단하다.
04. Tip
- 이미지 파일의 위치 : bin\debug\ 안에 위치해야함.
- C# 기반의 OpenCV 라이브러리는 C/C++ 기반의 OpenCV Library(DLL) 파일들을 "bin\Debug\" 폴더내에 같이 복사하여야 실행된다.
(다른방법이 있으므로 해결하길 바람)
'Library > opencv' 카테고리의 다른 글
OpenCV 2.4.4 Setting on Visual Studio 2010 (0) | 2021.01.26 |
---|---|
RGB to HSV 색상변환 (0) | 2021.01.26 |
Setting the develop environment (0) | 2021.01.26 |
How to set up opencv using various versions of the openCV library in Visual Studio (2) | 2021.01.26 |
[opencv] Mat Depth (0) | 2021.01.26 |