Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/btsimonh/opencv4nodjejsdistcreate
Binary Dist creator for opencv4nodejs
https://github.com/btsimonh/opencv4nodjejsdistcreate
Last synced: 16 days ago
JSON representation
Binary Dist creator for opencv4nodejs
- Host: GitHub
- URL: https://github.com/btsimonh/opencv4nodjejsdistcreate
- Owner: btsimonh
- Created: 2018-03-25T08:25:03.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2018-03-26T11:47:29.000Z (almost 7 years ago)
- Last Synced: 2024-11-11T13:11:48.364Z (about 2 months ago)
- Language: JavaScript
- Size: 6.84 KB
- Stars: 2
- Watchers: 2
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# opencv4nodjejsdistcreate
Binary Dist creator for opencv4nodejs**The ultimate goal of this project is to produce a local binary distribution of the excellent opencv4nodejs for use on the same of a very similar machine to the original build machine. Note that OpenCV builds May not be compatible across machines.**
**usage:**
**build a local opencv4nodejs**
**install this project and run with**
**npm start ```pathtoopencv4nodejs```**
**or npm start ```pathtoopencv4nodejs``` ```pathtodestination```**
**if not destination is specified, then it will create the binary distribution in ```pathtoopenscv4nodejsdistcreate```/dist/**
**once the binary distribution is created, use npm install ```pathtodist``` to install the distribution into your project. Your project may be on the same or a very similar machine (depending on how opencv built). The binary is ~115Mbytes, compared to a full opencv4nodejs install of ~4Gbytes.**
**note: you must ```cv = require('opencv4nodejsdist')``` in your project to use tthe dist verison. e.g.:**
```
try{
cv = require('opencv4nodejsdist');
} catch(e) {
cv = require('opencv4nodejs');
}
```