-
-
Notifications
You must be signed in to change notification settings - Fork 36
/
Copy pathmatrix.ts
51 lines (47 loc) · 2.43 KB
/
matrix.ts
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
import type { OCRPage } from '~/models/OCRDocument';
import ColorMatrices, { MatricesTypes, Matrix, concatTwoColorMatrices } from './color_matrix';
import { DEFAULT_BRIGHTNESS, DEFAULT_CONTRAST } from './constants';
// export const IMAGE_FILTERS = {
// grayscale: [0.299, 0.587, 0.114, 0, 0, 0.299, 0.587, 0.114, 0, 0, 0.299, 0.587, 0.114, 0, 0, 0, 0, 0, 1, 0],
// bw: (value = 1) => [value, value, value, -1, 0, value, value, value, -1, 0, value, value, value, -1, 0, 0, 0, 0, 1, 0],
// nightVision: [0.1, 0.4, 0, 0, 0, 0.3, 1, 0.3, 0, 0, 0, 0.4, 0.1, 0, 0, 0, 0, 0, 1, 0],
// polaroid: [1.438, -0.062, -0.062, 0, 0, -0.122, 1.378, -0.122, 0, 0, -0.016, -0.016, 1.483, 0, 0, 0, 0, 0, 1, 0]
// };
const sortPriority = ['normal', 'grayscale', 'bw', 'sepia', 'invert', 'polaroid'];
export const ColorMatricesTypes = Object.keys(ColorMatrices)
.filter((s) => sortPriority.indexOf(s) !== -1)
.sort((a, b) => {
const sortIndexA = sortPriority.indexOf(a);
const sortIndexB = sortPriority.indexOf(b);
if (sortIndexA !== -1) {
if (sortIndexB !== -1) {
return sortIndexA - sortIndexB;
}
return -1;
} else if (sortIndexB !== -1) {
return 1;
}
return a.localeCompare(b);
})
.map((k) => ({
id: k,
...ColorMatrices[k]
}));
export type ColorMatricesType = string;
export function getColorMatrix(type: MatricesTypes, ...args): Matrix {
return ColorMatrices[type]?.fn?.apply(ColorMatrices, args) ?? null;
}
export function getPageColorMatrix(page: OCRPage, forcedColorType?: MatricesTypes, brightness?: number, contrast?: number) {
if (page) {
const result = forcedColorType ? getColorMatrix(forcedColorType) : page.colorMatrix || getColorMatrix(page.colorType);
brightness = brightness || page.brightness;
contrast = contrast || page.contrast;
const hasBrightness = typeof brightness === 'number' && !isNaN(brightness) && brightness !== DEFAULT_BRIGHTNESS;
const hasContrast = typeof contrast === 'number' && !isNaN(contrast) && contrast !== DEFAULT_CONTRAST;
if (hasBrightness || hasContrast) {
const subMatrix = getColorMatrix('brightnessAndContrast', hasBrightness ? brightness : DEFAULT_BRIGHTNESS, hasContrast ? contrast : DEFAULT_CONTRAST);
return result ? concatTwoColorMatrices(result, subMatrix) : subMatrix;
}
return result;
}
}