hybridgroup.gobot/platforms/opencv/camera_driver.go

93 lines
1.9 KiB
Go

package opencv
import (
"errors"
"time"
cv "github.com/lazywei/go-opencv/opencv"
"gobot.io/x/gobot"
)
type capture interface {
RetrieveFrame(int) *cv.IplImage
GrabFrame() bool
}
const (
// Frame event
Frame = "frame"
)
// CameraDriver is the Gobot Driver for the OpenCV camera
type CameraDriver struct {
name string
camera capture
interval time.Duration
Source interface{}
start func(*CameraDriver) (err error)
gobot.Eventer
}
// NewCameraDriver creates a new driver with specified source.
// It also creates a start function to either set camera as a File or Camera capture.
func NewCameraDriver(source interface{}, v ...time.Duration) *CameraDriver {
c := &CameraDriver{
name: "Camera",
Eventer: gobot.NewEventer(),
Source: source,
interval: 10 * time.Millisecond,
start: func(c *CameraDriver) (err error) {
switch v := c.Source.(type) {
case string:
c.camera = cv.NewFileCapture(v)
case int:
c.camera = cv.NewCameraCapture(v)
default:
return errors.New("Unknown camera source")
}
return
},
}
if len(v) > 0 {
c.interval = v[0]
}
c.AddEvent(Frame)
return c
}
// Name returns the Driver name
func (c *CameraDriver) Name() string { return c.name }
// SetName sets the Driver name
func (c *CameraDriver) SetName(n string) { c.name = n }
// Connection returns the Driver's connection
func (c *CameraDriver) Connection() gobot.Connection { return nil }
// Start initializes camera by grabbing a frame
// every `interval` and publishing an frame event
func (c *CameraDriver) Start() (err error) {
if err := c.start(c); err != nil {
return err
}
go func() {
for {
if c.camera.GrabFrame() {
image := c.camera.RetrieveFrame(1)
if image != nil {
c.Publish(Frame, image)
}
}
time.Sleep(c.interval)
}
}()
return
}
// Halt stops camera driver
func (c *CameraDriver) Halt() (err error) { return }