node-opencv icon indicating copy to clipboard operation
node-opencv copied to clipboard

OpenCV Bindings for node.js

Results 101 node-opencv issues
Sort by recently updated
recently updated
newest added

Something I've been looking into for a little while. The OpenCV build process generates python and matlab bindings automatically from the C++ source. One of the issues these JS bindings...

nice-to-have

Is there an optical flow implementation example?

Hi, I am trying to sort contours using x axis point of boundingRect method. I want to know how do I get the contours so that I can push them...

```c++ void rotate2D(const Mat & src, Mat & dst, double angle, Mat & irot) { Point2f center(src.cols/2.0, src.rows/2.0); Mat rot = getRotationMatrix2D(center, angle, 1.0); Rect bbox = RotatedRect(center, src.size(), angle).boundingRect();...

Hi, I'm trying to use the BackgroundSubtractor for motion detection purposes. I have the following configuration: - [email protected] - [email protected] - [email protected] - [email protected] When I try to excute the...

Hi @peterbraden, long time no speak! When using Matrix:pixel() as a getter on a single channel image a single value is returned, however when using it as a setter an...

The contourArea has an optional parameter 'oriented' which when true "the function returns a signed area value, depending on the contour orientation (clockwise or counter-clockwise)" Is it possible we can...

``` var camera = new cv.VideoCapture('some video'); camera.read(function(err, im) { if (err) throw err; ... }); camera.release(); // problematic due to closures ``` It returns an image with no height...

``` System : Ubuntu 16.04 LTS npm : 3.5.2 node : v4.2.6 ``` When I try to install node-opencv by running 'npm install opencv`, I get a npm warning as...

I think the change in #389 is incompatible with #163 's introduction of the `.templateMatches` function, which is useful. In version 5.0.0 you can do the following: ``` javascript var...