Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Basic Tutorial for node.js openCV [closed]

I'm searching for a basic tutorial to use OpenCV with node.js. I couldn't find anything describing the functionality so perhaps anybody can give me an hint where I can find such information. Hope anybody has an idea Daniel

like image 808
BeMoreDifferent.com Avatar asked Nov 12 '12 16:11

BeMoreDifferent.com


2 Answers

There's the node-opencv module to use OpenCV bindings in node.js. There are some examples in there but I haven't come across any tutorials yet.

like image 152
mattholl Avatar answered Oct 03 '22 04:10

mattholl


Alternative Solution

I chose to go with a native module and update my bindings.gyp to include and link with ffmpeg/libav* and opencv

  'include_dirs+': [
    'src/',
    '<!@(pkg-config --cflags libavutil libavformat libavcodec libswscale )',
    '<!@(pkg-config --cflags opencv )'
  ],
  'link_settings': {
    'libraries': [
      '<!@(pkg-config --libs libavcodec libavformat libswscale libavutil)',
      '<!@(pkg-config --libs opencv)'
    ],      
like image 34
Mark Essel Avatar answered Oct 03 '22 02:10

Mark Essel