hybridgroup.gobot/platforms/opencv
Adrian Zankich e4811ad1cb Fix error with caputre and window interfaces 2014-12-22 14:24:06 -08:00
..
LICENSE WIP project restructure 2014-04-29 13:20:32 -07:00
README.md update readmes for import script 2014-12-12 10:32:52 -08:00
camera_driver.go Fix error with caputre and window interfaces 2014-12-22 14:24:06 -08:00
camera_driver_test.go Update opencv window and camera tests 2014-12-19 11:57:35 -08:00
doc.go Update docs 2014-10-28 14:52:59 -07:00
haarcascade_frontalface_alt.xml Add more opencv test coverage 2014-07-23 16:38:46 -07:00
helpers_test.go Fix error with caputre and window interfaces 2014-12-22 14:24:06 -08:00
lena-256x256.jpg Add more opencv test coverage 2014-07-23 16:38:46 -07:00
utils.go Adding godocs documentation to opencv package 2014-10-22 09:53:42 -05:00
utils_test.go Add more opencv test coverage 2014-07-23 16:38:46 -07:00
window_driver.go Fix error with caputre and window interfaces 2014-12-22 14:24:06 -08:00
window_driver_test.go Update opencv window and camera tests 2014-12-19 11:57:35 -08:00

README.md

OpenCV

OpenCV (Open Source Computer Vision Library) is an open source computer vision and machine learning software library. OpenCV was built to provide a common infrastructure for computer vision applications and to accelerate the use of machine perception in the commercial products. Being a BSD-licensed product, OpenCV makes it easy for businesses to utilize and modify the code.

For more info about OpenCV click here

How to Install

This package requires opencv to be installed on your system

OSX

To install opencv on OSX using Homebrew:

$ brew tap homebrew/science && brew install opencv

Ubuntu

Follow the official OpenCV installation guide

Windows

Follow the official OpenCV installation guide

Now you can install the package with

go get github.com/hybridgroup/gobot && go install github.com/hybridgroup/gobot/platforms/opencv

How to Use

Example using the camera.

package main

import (
	cv "github.com/hybridgroup/go-opencv/opencv"
	"github.com/hybridgroup/gobot"
	"github.com/hybridgroup/gobot/platforms/opencv"
)

func main() {
	gbot := gobot.NewGobot()

	window := opencv.NewWindowDriver("window")
	camera := opencv.NewCameraDriver("camera", 0)

	work := func() {
		gobot.On(camera.Event("frame"), func(data interface{}) {
			window.ShowImage(data.(*cv.IplImage))
		})
	}

	robot := gobot.NewRobot("cameraBot",
		[]gobot.Device{window, camera},
		work,
	)

	gbot.AddRobot(robot)

	gbot.Start()
}