Ron Evans
Ron Evans
Please see the tags I have created here matching specific versions of OpenCV https://github.com/hybridgroup/gocv/tags For example, this is the version of GoCV to match OpenCV 4.5.2: https://github.com/hybridgroup/gocv/releases/tag/opencv-4.5.2 Hopefully this can...
Sorry what is an "IPC"? Can you please elaborate on what you are trying to do? Thanks.
GoCV already has streaming support, for example you can use the capwindow example to stream a URL like this: ```shell $ go run ./cmd/capwindow/main.go http://187.157.229.132/mjpg/video.mjpg Start reading device: http://187.157.229.132/mjpg/video.mjpg ```...
I think @DoubleChuang was suggesting you use this form of the command: ``` main.exe "rtsp://admin:1234@[email protected]" ``` However from the message displayed, I do not think that is your problem. I...
How did you build OpenCV?
@Danile71 could you please add some smoke tests now for the legacy functions? Thanks!
Hello @lz1998 thanks for the contribution. The Windows build is failing however. See https://ci.appveyor.com/project/deadprogram/gocv/builds/40056732#L866 The reason appears to be https://github.com/microsoft/vcpkg/issues/5383#issuecomment-889506864 Not sure how to proceed here. What do you think?
You might be able to get a static build working, depending on your requirements. The same requirements for dependencies that apply to an OpenCV compiled C++ application apply to a...
Hard to tell from your exact code, but I would try to avoid the modification in place. Instead of ```go gocv.Erode(filtered, &filtered, erodeMat) ``` try ```go eroded := NewMat() defer...
You should probably check if `img.Empty()` before calling `gocv.IMEncode()` would be my suggestion. Hope that helps!