No description
Find a file
Bert Chang 3c1981582d Merge pull request #20 from bradleyg/master
Release cascade method.
2014-09-17 10:04:10 +08:00
images import svn rep 2013-10-08 10:13:28 +08:00
opencv Release memory storage. 2014-09-16 20:18:52 +01:00
samples Fix #12: Samples reference a correct repo 2014-07-29 00:48:04 +09:00
AUTHORS import svn rep 2013-10-08 10:13:28 +08:00
go-opencv.go Add package file 2014-01-14 17:21:26 +04: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 Update installation instruction. 2014-07-29 15:33:45 +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.

Install

Linux & Mac OS X

Install Go and OpenCV, you might want to install both of them via apt-get or homebrew.

go get github.com/lazywei/go-opencv
cd ${GoOpenCVRoot}/samples && go run hellocv.go

Windows

  • Install Go 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

Example

Resizing

package main

import opencv "github.com/lazywei/go-opencv/opencv"

func main() {
	filename := "bert.jpg"
	srcImg := opencv.LoadImage(filename)
	if srcImg == nil {
		panic("Loading Image failed")
	}
	defer srcImg.Release()
	resized1 := opencv.Resize(srcImg, 400, 0, 0)
	resized2 := opencv.Resize(srcImg, 300, 500, 0)
	resized3 := opencv.Resize(srcImg, 300, 500, 2)
	opencv.SaveImage("resized1.jpg", resized1, 0)
	opencv.SaveImage("resized2.jpg", resized2, 0)
	opencv.SaveImage("resized3.jpg", resized3, 0)
}

Webcam

Yet another cool example is created by @saratovsource which demos how to use webcam:

cd samples
go run webcam.go

More

You can find more samples at: https://github.com/lazywei/go-opencv/tree/master/samples

How to contribute

  • Fork this repo
  • Clone the main repo, and add your fork as a remote
git clone https://github.com/lazywei/go-opencv.git
cd go-opencv
git remote rename origin upstream
git remote add origin https://github.com/your_github_account/go-opencv.git
  • Create new feature branch
git checkout -b your-feature-branch
  • Commit your change and push it to your repo
git commit -m 'new feature'
git push origin your-feature-branch
  • Open a pull request!

TODOs

  • More details doc
  • Implement more bindings