1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-01 13:48:57 +08:00

16 lines
220 B
Go
Raw Normal View History

2014-07-23 16:38:46 -07:00
package opencv
import (
"gocv.io/x/gocv"
)
2014-07-23 16:38:46 -07:00
type testCapture struct{}
func (c *testCapture) Read(img *gocv.Mat) bool {
2014-07-23 16:38:46 -07:00
return true
}
2014-07-23 16:54:39 -07:00
type testWindow struct{}
func (w *testWindow) ShowImage(img gocv.Mat) { return }