1
0
mirror of https://github.com/hybridgroup/gobot.git synced 2025-04-29 13:49:14 +08:00
Ron Evans b082d6739a opencv: update to latest version of GoCV
Signed-off-by: Ron Evans <ron@hybridgroup.com>
2018-04-24 12:56:26 +02:00

16 lines
220 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 }