hybridgroup.gobot/examples/opencv_face_detect.go

50 lines
949 B
Go
Raw Normal View History

package main
import (
"path"
"runtime"
2014-06-09 09:14:18 +08:00
"time"
2014-07-11 08:21:21 +08:00
cv "github.com/hybridgroup/go-opencv/opencv"
"github.com/hybridgroup/gobot"
"github.com/hybridgroup/gobot/platforms/opencv"
)
func main() {
_, currentfile, _, _ := runtime.Caller(0)
cascade := path.Join(path.Dir(currentfile), "haarcascade_frontalface_alt.xml")
2014-05-23 11:53:15 +08:00
gbot := gobot.NewGobot()
2014-05-23 11:53:15 +08:00
window := opencv.NewWindowDriver("window")
camera := opencv.NewCameraDriver("camera", 0)
work := func() {
var image *cv.IplImage
2014-06-09 09:14:18 +08:00
2014-07-09 09:36:14 +08:00
gobot.On(camera.Event("frame"), func(data interface{}) {
image = data.(*cv.IplImage)
})
2014-06-09 09:14:18 +08:00
gobot.Every(500*time.Millisecond, func() {
if image != nil {
i := image.Clone()
faces := opencv.DetectFaces(cascade, i)
i = opencv.DrawRectangles(i, faces, 0, 255, 0, 5)
window.ShowImage(i)
}
2014-06-09 09:14:18 +08:00
})
}
2014-07-09 09:36:14 +08:00
robot := gobot.NewRobot("faceBot",
[]gobot.Connection{},
[]gobot.Device{window, camera},
work,
)
gbot.AddRobot(robot)
2014-05-23 11:53:15 +08:00
gbot.Start()
}