mirror of
https://github.com/hybridgroup/gobot.git
synced 2025-04-26 13:48:49 +08:00
16 lines
219 B
Go
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 }
|