Skip to content

Commit 596fcec

Browse files
committed
Commit: 824184cc
1 parent c23fffa commit 596fcec

File tree

2 files changed

+10
-2
lines changed

2 files changed

+10
-2
lines changed

src/models/image-quality-check-type.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ export enum ImageQualityCheckType {
5151
/**
5252
* Signals if the document image is bright enough
5353
*/
54-
Brightness = 9
54+
Brightness = 9,
55+
/**
56+
* Signals if the document image has occlusion
57+
*/
58+
Occlusion = 10
5559
}
5660

5761

src/models/input-image-quality-checks.ts

Lines changed: 5 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -51,7 +51,11 @@ export enum InputImageQualityChecks {
5151
/**
5252
* Signals if the document image is bright enough
5353
*/
54-
Brightness = 'brightnessCheck'
54+
Brightness = 'brightnessCheck',
55+
/**
56+
* Signals if the document image has occlusion
57+
*/
58+
Occlusion = 'occlusionCheck'
5559
}
5660

5761

0 commit comments

Comments
 (0)