npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

cloud-vision-lines-phrases

v1.0.2

Published

Adds lines and phrases to the output generated by Google Cloud Vision's small batch file annotation online.

Downloads

3

Readme

cloud-vision-lines-phrases

Adds lines and phrases to the output generated by Google Cloud Vision's small batch file annotation online.

Within the generated object, the batch file annotation's words are sorted the same way you'd read text on a page (left to right across the page, then down to the next line). Closely-spaced words are grouped into phrases, and in turn, phrases within the same horizontal plane are grouped into lines. This output gives you additional flexibility with parsing the annotation, versus just using the out-of-the-box block formatting.

Special note: This package was not created by nor affiliated with Google; however, getting the desired result will require you to setup and generate a batch file annotation from @google-cloud/vision. The resulting batch file annotation will then be used as a parameter in the cloud-vision-lines-phrases function.

To use custom parsers for retrieving text from this output, check out the cloud-vision-lines-phrases-parser package. There is also a demo UI in CodeSandbox that gives a visual representation of the generated output and allows the parsers to be tested out from the parsers package. Repo for the UI can be found here.

Installation

$ npm install cloud-vision-lines-phrases

Setup

Below is sample code borrowed from Google's documentation. The batch file annotation you return from this code will be used as one of the function paramaters shown in the Use section. I have personally made a few modifications to the borrowed sample code, such as the function name, adding five parameters, and changing what the function returns.

const { ImageAnnotatorClient } = require("@google-cloud/vision").v1;
const client = new ImageAnnotatorClient();

/**
 * @param {string} bucketName - Name of your Google Cloud Storage bucket
 * @param {string} bucketFilename - Full path to the file you will be scanning in the bucket
 * @param {string} bucketFileContentType - Accepted types: 'application/pdf', 'image/tiff', or 'image/gif'
 * @param {Array<number>} pagesToScan - [1, 2, etc.] Max five pages. First page starts at 1, Last page at -1
 * @param {string} language - To select English for instance, use 'en'
 * @returns {Array<Object>} - Batch file annotation (each document page is an object)
 */
const getBatchFileAnnotation = async (
  bucketName,
  bucketFilename,
  bucketFileContentType,
  pagesToScan,
  language
) => {
  const inputConfig = {
    mimeType: bucketFileContentType,
    gcsSource: {
      uri: `gs://${bucketName}/${bucketFilename}`,
    },
  };
  const features = [{ type: "DOCUMENT_TEXT_DETECTION" }];

  const fileRequest = {
    inputConfig: inputConfig,
    features: features,
    pages: pagesToScan,
    imageContext: {
      languageHints: [language],
    },
  };

  const request = {
    requests: [fileRequest],
  };

  const [result] = await client.batchAnnotateFiles(request);
  const { responses } = result.responses[0];
  return responses;
};

Use

The responses from the previous code is the batch file annotation, and you can read more about the objects contained within it here. Just use this value as the first paramater in the getAnnotationFormats function to get the desired object containing the lines and phrases:

const getAnnotationFormats = require("cloud-vision-lines-phrases");

const batchFileAnnotation = await getBatchFileAnnotation(
  bucketName,
  bucketFilename,
  bucketFileContentType,
  pagesToScan,
  language
);
const bucketFileBasename =
  "(Optional) The original filename that was scanned in the bucket.";

const annotationFormats = getAnnotationFormats(
  batchFileAnnotation,
  bucketFileBasename
);

You can see example annotationFormats here, as well as their original image files here.
The annotationFormats object includes Google's unaltered batch file annotation ("batchFileAnnotation"), the original filename of the scanned file ("filename"), the newly-generated line list ("lineList"), and a single string of the line list's text with new line characters separating each phrase ("lineListText").

Examples

annotationFormats object :

{
  filename: 'filename.pdf',
  batchFileAnnotation: ['...'],
  lineList: {
    pages: ['...']
  },
  lineListText: 'phrase1\nphrase2\nphrase3\n etc...'
}

lineList property from annotationFormats object:

lineList: {
  pages: [
    {
      lines: [
        {
          phrases: [
            {
              boundingBox: {
                vertices: ['...'],
                normalizedVertices: ['...']
              },
              text: 'phraseText',
              words: [
                boundingBox: {
                  vertices: ['...'],
                  normalizedVertices: ['...']
                },
                text: 'wordText'
                symbols: [
                  property: null,
                  boundingBox: null,
                  text: 'symbolText',
                  confidence: 0.9
                ],
              ]
            }
          ]
        }
      ]
    }
  ]
}

A symbol is a single character, and these objects are not modified from those contained in the original batch file annotation.

A word is a group of one or more symbols on the same horizontal plane that contain no spaces between them. In some cases, the batch file annotation will have multiple adjacent word objects with no spaces between them, particularly when the word itself is comprised of only one special character. However, within the line list, in the interest of consistency, if the symbols do not have a space between them they will always comprise the same word (regardless of the type of characters).

A phrase is a group of one or more words on the same horizontal plane that contain no more than one space between them.

A line contains all the phrases that exist on the same horizontal plane.

Note that both vertices and normalizedVertices are calculated for phrases and words (but not symbols) within the line list.

What constitutes a single space and a horizontal plane within an image file is not always an exact science; however, you will find that the output will suffice the vast majority of the time.