All Projects → macacajs → nodecv-server

macacajs / nodecv-server

Licence: MIT license
nodecv server side

Programming Languages

javascript
184084 projects - #8 most used programming language
HTML
75241 projects
Makefile
30231 projects
shell
77523 projects

Projects that are alternatives of or similar to nodecv-server

sample-nodejs
Macaca test sample for Node.js
Stars: ✭ 44 (+175%)
Mutual labels:  macaca
iosHookViewId
A solution for ios hook view id(给iOS应用自动生成控件id)
Stars: ✭ 44 (+175%)
Mutual labels:  macaca
wd.java
Java Client binding for Macaca
Stars: ✭ 30 (+87.5%)
Mutual labels:  macaca
macaca-puppeteer
Macaca puppeteer driver
Stars: ✭ 39 (+143.75%)
Mutual labels:  macaca
command-line-test
command-line test tool for Node.js
Stars: ✭ 14 (-12.5%)
Mutual labels:  macaca
Macaca
Automation solution for multi-platform. 多端自动化解决方案
Stars: ✭ 2,991 (+18593.75%)
Mutual labels:  macaca
dom-event-simulate
simulate user interaction with DOM events.
Stars: ✭ 23 (+43.75%)
Mutual labels:  macaca
egg-datahub
Macaca DataHub plugin for Egg.js
Stars: ✭ 19 (+18.75%)
Mutual labels:  macaca
macaca-adb
Node.js wrapper for ADB.
Stars: ✭ 36 (+125%)
Mutual labels:  macaca
UIAutomatorWD
Node.js wrapper for Android UIAutomator.
Stars: ✭ 51 (+218.75%)
Mutual labels:  macaca
wd.py
Python Client binding for Macaca
Stars: ✭ 33 (+106.25%)
Mutual labels:  macaca
android-unicode
Android unicode UTF-7 input apk
Stars: ✭ 23 (+43.75%)
Mutual labels:  macaca
sample-java
Macaca test sample for Java
Stars: ✭ 23 (+43.75%)
Mutual labels:  macaca

nodecv-server

NPM version build status Test coverage node version npm download

nodecv server side

Usage

$ git clone [email protected]:macacajs/nodecv-server.git --depth=1
$ cd nodecv-server
$ npm i
$ make server

Please visit demo: http://localhost:9900/

API

POST /opencv/dissimilarity
POST /opencv/matchtemplate
POST /opencv/cascadedetect

Example:

request.post({
  url: `${remoteHost}/opencv/dissimilarity`,
  formData: formData
}, function(err, httpResponse, body) {
  if (err) {
    return console.error('upload failed:', err);
  }
  console.log('Server responded with:', body);
  try {
    const data = JSON.parse(body);
    console.log(`Dissimilarity is: ${data.dissimilarity}`);
  } catch (e) {
  }
});

More sample: macaca-sample

License

The MIT License (MIT)

Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].