2017-03-13 23:01:39 +08:00
|
|
|
// +build example
|
|
|
|
//
|
|
|
|
// Do not build by default.
|
|
|
|
|
2014-04-26 18:11:51 +08:00
|
|
|
package main
|
|
|
|
|
|
|
|
import (
|
2017-10-05 23:05:10 +08:00
|
|
|
"github.com/hybridgroup/gocv"
|
2016-12-08 20:24:03 +08:00
|
|
|
"gobot.io/x/gobot"
|
|
|
|
"gobot.io/x/gobot/platforms/opencv"
|
2014-04-26 18:11:51 +08:00
|
|
|
)
|
|
|
|
|
|
|
|
func main() {
|
2016-10-03 22:58:43 +08:00
|
|
|
window := opencv.NewWindowDriver()
|
|
|
|
camera := opencv.NewCameraDriver(0)
|
2014-04-26 18:11:51 +08:00
|
|
|
|
|
|
|
work := func() {
|
2017-10-05 23:05:10 +08:00
|
|
|
camera.On(opencv.Frame, func(data interface{}) {
|
|
|
|
img := data.(gocv.Mat)
|
|
|
|
window.ShowImage(img)
|
|
|
|
window.WaitKey(1)
|
2014-04-26 18:11:51 +08:00
|
|
|
})
|
|
|
|
}
|
|
|
|
|
2014-07-09 09:36:14 +08:00
|
|
|
robot := gobot.NewRobot("cameraBot",
|
|
|
|
[]gobot.Device{window, camera},
|
|
|
|
work,
|
|
|
|
)
|
|
|
|
|
2016-10-19 03:08:25 +08:00
|
|
|
robot.Start()
|
2014-04-26 18:11:51 +08:00
|
|
|
}
|