UNPKG
ocr-tools
Version:
latest (0.2.0)
0.2.0
0.1.1
0.1.0
0.0.5
0.0.4
0.0.3
0.0.2
Various tools for OCR
github.com/cheminfo-js/ocr-tools
cheminfo-js/ocr
ocr-tools
/
src
/
util
/
setFingerprintDataOnRoi.js
14 lines
(12 loc)
•
286 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
'use strict'
;
module
.
exports
=
function
(
lines, options
) {
for
(
let
line
of
lines) {
for
(
let
roi
of
line.
rois
) {
var
small = roi.
getMask
().
scale
({
width
: options.
width
,
height
: options.
height
}); roi.
data
=
Array
.
from
(small.
data
); } } };