Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/johnelliott/opencv-image-stream

Transform stream for images to openCV matrix objects
https://github.com/johnelliott/opencv-image-stream

Last synced: 21 days ago
JSON representation

Transform stream for images to openCV matrix objects

Awesome Lists containing this project

README

        

# opencv image stream

transform images to openCV matrix objects

# example

```js
var OCS = require('opencv-image-stream')

var transform = new OCS() // transform stream

require('fs').createReadStream('./test/image.jpg').pipe(transform).on('data', console.log) // [ Matrix 133x174 ]
```
# About
Use with [node-opencv](https://github.com/peterbraden/node-opencv).