opencv-node

0.2.6 • Public • Published

Purpose

Expose opencv to the node environment.

Features

- cv::Point, cv::Size, cv::Rect, etc replaced by object notation:
	Point -> {x: 0, y:0}, Size -> {width: 33, height: 33}

- Checks the types of parameters as well as ranges of values on each native call (harder to crash app from script)
- Friendly exception messages on invalid parameters 

Example

See scripts/effects.coffee for a full demo.

Installation - MacOS X

$ brew install opencv --build32
$ npm install -g opencv-node
$ coffee scripts/tests

(tested with GCC 4.2.1 and node 0.8.0)

Installation - Windows

  1. Download OpenCV from http://sourceforge.net/projects/opencvlibrary/files/latest/download

  2. Extract it to a folder, eg C:\OpenCV

  3. Open a Visual Studio command prompt and type

     set OPENCV_ROOT=C:/OpenCV
     npm install -g opencv-node
    

(tested with Visual Studio 2010 and node 0.8.8)

API Differences

Some functions have a more js-friendly API/syntax. The void functions which return their output in an argument passed by reference, return the result directly:

cv::split returns an Array and takes only 1 argument
cv::HoughCircles returns an Array
cv::HoughLines returns an Array
cv::cornerSubPix returns an Array

* others?

License

BSD

Disclaimer

Please report any bugs or missing functions. This module has never been used in production and is generally meant to be used for experimentation.

Versions

Current Tags

  • Version
    Downloads (Last 7 Days)
    • Tag
  • 0.2.6
    6
    • latest

Version History

Package Sidebar

Install

npm i opencv-node

Weekly Downloads

11

Version

0.2.6

License

none

Last publish

Collaborators

  • codeboost