Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Unofficial Node.js module for the CloudSight image recognition API.
var cloudsight = require ('cloudsight') ({
apikey: 'abc123'
});
var image = {
image: '/path/to/image.jpg',
locale: 'en-US'
};
// Upload image to analyze, report results
cloudsight.request (image, true, console.log);
You need a CloudSight account API key with enough credits.
npm install cloudsight
The callback function receives result data and errors.
function myCallback (err, data) {
if (err) {
console.log (err);
return;
}
console.log (data);
}
error message | description | additional |
---|---|---|
request failed | A request error occured | err.error |
API error | API error occured | err.statusCode and err.error |
( params, [polling], callback )
Send an image to the API for analysis.
argument | type | required | default | description |
---|---|---|---|---|
params | object | yes | Image object, see below | |
polling | boolean | no | false | Only callback when analysis is complete |
callback | function | yes | Callback function |
param | required | default | description |
---|---|---|---|
image | yes | Local path to image, either this or remote_image_url | |
remote_image_url | yes | URL to image, either this or image | |
locale | no | en-US | OCR locale for text recognition |
language | no | en | Response data language |
device_id | no | UUID | Unique identifier for request, auto generated |
latitude | no | Image context geo position | |
longitude | no | Image context geo position | |
altitude | no | Image context geo position | |
ttl | no | Analysis deadline in seconds or max | |
focus_x | no | Focal point in px | |
focus_y | no | Focal point in px |
// Describe image
var image = {
image: '/path/to/image.jpg',
locale: 'en-US'
};
// Upload image
cloudsight.request (image, console.log);
// Upload image and wait for completion
cloudsight.request (image, true, console.log);
( token, callback )
Get analysis state or data for an image.
argument | type | required | description |
---|---|---|---|
token | string | yes | Image token from .request |
callback | function | yes | Callback function |
cloudsight.response ('xyz789', console.log);
This is free and unencumbered software released into the public domain.
Anyone is free to copy, modify, publish, use, compile, sell, or distribute this software, either in source code form or as a compiled binary, for any purpose, commercial or non-commercial, and by any means.
In jurisdictions that recognize copyright laws, the author or authors of this software dedicate any and all copyright interest in the software to the public domain. We make this dedication for the benefit of the public at large and to the detriment of our heirs and successors. We intend this dedication to be an overt act of relinquishment in perpetuity of all present and future rights to this software under copyright law.
THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.
For more information, please refer to http://unlicense.org/
FAQs
CloudSight image recognition API (unofficial)
The npm package cloudsight receives a total of 0 weekly downloads. As such, cloudsight popularity was classified as not popular.
We found that cloudsight demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.