No description
Find a file
2013-12-16 12:17:24 +08:00
images import svn rep 2013-10-08 10:13:28 +08:00
opencv Fix ratio computing error. 2013-12-16 12:17:24 +08:00
samples import svn rep 2013-10-08 10:13:28 +08:00
AUTHORS import svn rep 2013-10-08 10:13:28 +08:00
INSTALL import svn rep 2013-10-08 10:13:28 +08:00
LICENSE import svn rep 2013-10-08 10:13:28 +08:00
README.md Remove some files. 2013-12-16 11:13:44 +08:00
TODO import svn rep 2013-10-08 10:13:28 +08:00

#Go OpenCV binding

Why fork?

Original project (https://code.google.com/p/go-opencv) looks abandoned. Therefore, I decide to fork it and host it on Github, so that others can help to maintain this package.

TODOs

  • More details doc
  • Implement more bindings

Install

Linux

  • install Go1 and OpenCV
  • go get github.com/lazywei/go-opencv
  • cd ${GoOpenCVRoot}/samples && go run hellocv.go

Windows

  • install Go1 and MinGW
  • install OpenCV-2.4.x to MinGW dir
    • libopencv*.dll --> ${MinGWRoot}\bin
    • libopencv*.lib --> ${MinGWRoot}\lib
    • include\opencv --> ${MinGWRoot}\include\opencv
    • include\opencv2 --> ${MinGWRoot}\include\opencv2
  • go get code.google.com/p/go-opencv/trunk/opencv
  • cd ${GoOpenCVRoot}/trunk/samples && go run hellocv.go