Socket
Socket
Sign inDemoInstall

gcp_cloud_vision_lines

Package Overview
Dependencies
0
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.0.3 to 1.0.4

2

package.json
{
"name": "gcp_cloud_vision_lines",
"version": "1.0.3",
"version": "1.0.4",
"description": "This utility breaks down a full text annotation response from the Google cloud vision API into a neatly parsed Array with each element representing a single line of text, with coords and height and width dimensions.",

@@ -5,0 +5,0 @@ "main": "src/index.js",

@@ -42,6 +42,6 @@ # GCP cloud vision lines

coords:
{ tl: [Object], // the top left coord of the line
tr: [Object], // the top right coord of the line
br: [Object], // the bottom right coord of the line
bl: [Object], // the bottom left coord of the line
{ tl: {"x":516,"y":107}, // the top left coord of the line
tr: {"x":636,"y":107}, // the top right coord of the line
br: {"x":636,"y":155}, // the bottom right coord of the line
bl: {"x":516,"y":155}, // the bottom left coord of the line
w: 120, // the width dimension of the line

@@ -53,6 +53,6 @@ h: 48 // the height dimension of the line

coords:
{ tl: [Object],
tr: [Object],
br: [Object],
bl: [Object],
{ tl: {"x":330,"y":156},
tr: {"x":813,"y":156},
br: {"x":813,"y":207},
bl: {"x":330,"y":207},
w: 483,

@@ -59,0 +59,0 @@ h: 51

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc