Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/johnelliott/opencv-image-stream
- Owner: johnelliott
- Created: 2016-05-01T04:37:04.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2016-05-01T04:44:22.000Z (over 8 years ago)
- Last Synced: 2024-04-24T13:17:52.997Z (8 months ago)
- Language: JavaScript
- Homepage:
- Size: 15.6 KB
- Stars: 0
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
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).