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

Adds BEBLID (https://docs.opencv.org/4.x/d7/d99/classcv_1_1xfeatures2d_1_1BEBLID.html) and TBLID (https://docs.opencv.org/4.x/dd/dc1/classcv_1_1xfeatures2d_1_1TEBLID.html) to xfeatures2d in the same way BREIF was added in #1114

What is the best way to convert a image.YCbCr to gocv.Mat?

enhancement

I try to use [Multiply](https://github.com/hybridgroup/gocv/blob/1ce30bf65f8ede198102241f5103e9af2e89bcf6/cuda/arithm.go#L225) in Cuda. `MultiplyWithStream` was not available. OpenCV had Stream ready([cuda/arithm.cpp](https://github.com/hybridgroup/gocv/blob/1ce30bf65f8ede198102241f5103e9af2e89bcf6/cuda/arithm.cpp#L101), [cuda/arithm.h](https://github.com/hybridgroup/gocv/blob/1ce30bf65f8ede198102241f5103e9af2e89bcf6/cuda/arithm.h#L26) and [opencv multiply](https://docs.opencv.org/master/d8/d34/group__cudaarithm__elem.html#ga497cc0615bf717e1e615143b56f00591)), but GoCV did not have `MultiplyWithStream`. So I added the function...

[triangulatePoints](https://docs.opencv.org/4.x/d0/dbd/group__triangulation.html#ga211c855276b3084f3bbd8b2d9161dc74) TriangulatePoints isn't in the API from what I can tell. Is it possible to use this within Gocv?

## Description I have a plain and simple implementation of ORB I got using a tutorial. When I try running this function 1000 times I see huge memory usage and...

## Description When I use gocv.FindContours to get content and traverse through the error: cannot range over contours (variable of type gocv.PointsVector) I am a beginner, I am very sorry,...

Hello, I successfully loaded the model using ReadNetFromOnnx and obtained the inference result blob through net. forward(). However, I am not sure about the structure of this blob. How can...

## Description ## Steps to Reproduce ## Your Environment * Operating System and version: MacOS 14 * OpenCV version used:4.8.1 * How did you install OpenCV?:Homebrew * GoCV version used:0.35.0...

## Description The description says that the package supports OpenCV v4.8.1, but right now the [calibration flags](https://github.com/hybridgroup/gocv/blob/release/calib3d.go#L16) correspond to OpenCV [3.4](https://docs.opencv.org/3.4/db/d58/group__calib3d__fisheye.html). [Flags](https://docs.opencv.org/4.7.0/d9/d0c/group__calib3d.html) of OpenCV 4.7.0.

This pr adds `Retrieve` method to `VideoCapture` I haven't had time to test it with a USB camera but works well with video files togheter with `Grab` method and testing...