gocv icon indicating copy to clipboard operation
gocv copied to clipboard

Go package for computer vision using OpenCV 4 and beyond. Includes support for DNN, CUDA, and OpenCV Contrib.

Results 205 gocv issues
Sort by recently updated
recently updated
newest added

Hi, I'm installing gocv at Windows 11 x64, trying to follow the installation guide to get: ```bash chdir %GOPATH%\src\gocv.io\x\gocv ``` But actually I could not find this path, instead I...

How can I clear my memory? It's growing up!There is another thing,sometime I can't use camera 0,just can’t,I don't know why?。 ------------------------------------------------------ func main() {     initFyne(500, 500) } func initFyne(w,...

## Description I want to build a golang program static linked with gocv, which used ``` go build -a -ldflags '-extldflags "-static"' *.go ``` but it show below # command-line-arguments...

## Description Without the dependencies, you get the following error: Gtk-Message: 21:52:03.134: Failed to load module "gail" ** (gocv-cam-face:109525): WARNING **: 21:52:03.142: (../atk-adaptor/bridge.c:1018):atk_bridge_adaptor_init: runtime check failed: (root) ## Steps to...

Hi. Lately, I wanted to use gocv in my project and tried to install the package but I couldn't because this error: E: Unable to locate package libdc1394-22-dev ## Description...

## Description On on Manjaro french install gocv need installation of opencv AND vtk ## Steps to Reproduce 1. Fresh install Manjaro (with 21.2.5 ISO) 2. Update system `pacman -Suy`...

## Description I installed the necessary packages: `OpenCV` and `pkgconfig ` with `homebrew` and followed with the guide on [gocv](https://gocv.io/getting-started/macos), get results below: ``` # gocv.io/x/gocv ld: warning: ld: warning:...

On Intel mac, sift throws illegal hardware instruction. Always reproducible on 2 macs. ## Description ``` package main import ( "fmt" "os" "gocv.io/x/gocv" ) func main() { img := gocv.IMRead(os.Args[1],...

## Description When i create a new mat, I used gocv.NewMat, defer x.Close and after i merged 4 image channel pointer the empty mat. When i see the profile, the...