1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-26 13:48:49 +08:00
deadprogram 6bd8280250 Switch to use custom domain for GoCV package
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-10-18 18:13:40 +02:00

16 lines
219 B
Go

package opencv
import (
"gocv.io/x/gocv"
)
type testCapture struct{}
func (c *testCapture) Read(img gocv.Mat) bool {
return true
}
type testWindow struct{}
func (w *testWindow) ShowImage(img gocv.Mat) { return }