Browse Source

Update rectangle usage in api.md

pull/427/head
Jerome Wu 5 years ago
parent
commit
205178646b
  1. 4
      docs/api.md

4
docs/api.md

@ -180,7 +180,7 @@ Figures out what words are in `image`, where the words are in `image`, etc. @@ -180,7 +180,7 @@ Figures out what words are in `image`, where the words are in `image`, etc.
- `image` see [Image Format](./image-format.md) for more details.
- `options` a object of customized options
- `rectangles` an array of objects to specify the regions you want to recognized in the image, each object should contain top, left, width and height, see example below.
- `rectangle` an object to specify the regions you want to recognized in the image, should contain top, left, width and height, see example below.
- `jobId` Please see details above
**Output:**
@ -209,7 +209,7 @@ const { createWorker } = Tesseract; @@ -209,7 +209,7 @@ const { createWorker } = Tesseract;
await worker.loadLanguage('eng');
await worker.initialize('eng');
const { data: { text } } = await worker.recognize(image, {
rectangles: [{ top: 0, left: 0, width: 100, height: 100 }],
rectangle: { top: 0, left: 0, width: 100, height: 100 },
});
console.log(text);
})();

Loading…
Cancel
Save