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

I have a binary encoded string which when i save as image gets saved correct but when i pass this string to readimage function it gives error . What is...

I have byte array of image taken from S3 and now I want to convert it into image object using `opencv` in `node.js` as I did in `Golang`. the code...

``` ..\src\BackgroundSubtractor.cc(7): fatal error C1021: invalid preprocessor comm and 'warning' [C:\Users\Victor\node_modules\opencv\build\opencv.vcxproj] ..\src\Stereo.cc(5): fatal error C1021: invalid preprocessor command 'warning' [C:\Users\Victor\node_modules\opencv\build\opencv.vcxproj] c:\users\victor\node_modules\opencv\node_modules\nan\nan_new.h(208): warning C4 267: 'argument' : conversion from 'size_t' to...

``` npm WARN lifecycle [email protected]~install: cannot run in wd %s %s (wd=%s) [email protected] node-pre-gyp install --fallback-to-build /home/ryuk/lfreneda/work/others/node-opencv ``` Help?

My problem is two-fold. I'm attempting to provide some very simple typescript definition files to garner interest in further developing this code base. But documentation is severely lacking and I'm...

I'm currently trying to work with this project and develop a typescript definition file as I go (at a minimum for the features I'm using). As I amass definitions that...

Hello, can you give me a hint on or point me to an example of how to save to a video file? Is this possible with this project or can...

Hello, The example of optical-flow doesn't work for me > var flow = old_frame.calcOpticalFlowPyrLK(newFrame, goodFeatures, lk_params.winSize, lk_params.maxLevel, lk_params.criteria); ^ TypeError: old_frame.calcOpticalFlowPyrLK is not a function at /home/zahar/workplace/openCV/node-opencv/examples/optical-flow.js:44:30 what causes this?

This is a "Help wanted" issue. Is there a method on the `FaceRecognizer.{algorithm}` object to return an array of objects where I can then order them by confidence (lowest to...

Hello, I'm not sure of the idea behind `mat.get(i, j)` vs `mat.pixel(i, j)`. On my understanding : * `mat.get(i, j)` is for any non-image Matrix * `mat.pixel(i, j)` is for...