1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-05-02 22:17:12 +08:00
deadprogram 31131780d4 opencv: Switchover to use GoCV and OpenCV 3.3
Signed-off-by: deadprogram <ron@hybridgroup.com>
2017-10-05 17:05:10 +02:00

16 lines
232 B
Go

package opencv
import (
"github.com/hybridgroup/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 }