Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion src/models/chosen-document-type.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface ChosenDocumentType {
*/
'P': number;
/**
* true if the document of the given type is rotated by 180 degrees
* Indicates if the document of the given type is rotated by 180 degrees
* @type {number}
* @memberof ChosenDocumentType
*/
Expand Down
182 changes: 5 additions & 177 deletions src/models/light.ts
Original file line number Diff line number Diff line change
Expand Up @@ -22,197 +22,25 @@

export enum Light {
/**
* Lighting schemes are off
* No Light
*/
OFF = 0,
/**
* OVI scheme
*/
OVI = 1,
/**
* Upper/lower lighters of white light scheme
*/
WHITE_TOP = 2,
/**
* Side lighters of white light scheme
*/
WHITE_SIDE = 4,
/**
* General white light without separate control of side and upper/lower lighters scheme
*/
WHITE_FRONT = 8388608,
/**
* Upper/lower and side lighters of white light scheme
* White
*/
WHITE = 6,
/**
* Upper/lower lighters of IR light scheme
*/
IR_TOP = 8,
/**
* Side lighters of IR light scheme
*/
IR_SIDE = 16,
/**
* General IR light without separate control of side and upper/lower lighters scheme
*/
IR_FRONT = 16777216,
/**
* Upper/lower and side lighters of IR light scheme
* Infrared
*/
IR = 24,
/**
* general white image converted to grayscale
*/
WHITE_GRAY = 33554432,
/**
* General UV light scheme
* Ultraviolet
*/
UV = 128,
/**
* OVD light for hologram visualization
*/
OVD = 67108864,
/**
* Video detection light for internal use only
*/
VIDEODETECTION = 134217728,
/**
* Light IR 870 oblique
*/
IR_870_OBL = 268435456,
/**
* IR luminescence
*/
IR_LUMINESCENCE = 256,
/**
* Left lighter of white coaxial light scheme
*/
AXIAL_WHITE_LEFT = 1024,
/**
* Right lighter of white coaxial light scheme
*/
AXIAL_WHITE_RIGHT = 2048,
/**
* Coaxial white light without separate control of left and right lighters scheme
*/
AXIAL_WHITE_FRONT = 512,
/**
* IR720
*/
IR_720 = 4096,
/**
* IR940
*/
IR_940 = 8192,
/**
* Right and left lighters of white coaxial light scheme
*/
AXIAL_WHITE_FULL = 3072,
/**
* For internal use
*/
RAW_DATA = 2147483648,
/**
* For internal use
*/
RAW_DATA_GRBG = 2415919104,
/**
* For internal use
*/
RAW_DATA_GBGR = 2684354560,
/**
* For internal use
*/
RAW_DATA_RGGB = 2952790016,
/**
* For internal use
*/
RAW_DATA_BGGR = 3221225472,
/**
* Transmitted
*/
TRANSMITTED = 32,
/**
* Transmitted IR
*/
TRANSMITTED_IR = 64,
/**
* Transmitted AntiStokes
*/
ANTI_STOKES = 65536,
/**
* Transmitted IR940
*/
TRANSMITTED_IR940 = 16384,
/**
* OVD right
*/
OVD_RIGHT = 262144,
/**
* OVD left
*/
OVD_LEFT = 131072,
/**
* IR 700
*/
IR_700 = 32768,
/**
* Front IR870 (mod. 8803)
*/
IR_870 = 16777216,
/**
* OVD light (hologram visualization) (mod. 8850)
*/
HOLO = 67108864,
/**
* For internal use
*/
IR_BOTTOM = 64,
/**
* For internal use
*/
WHITE_BOTTOM = 32,
/**
* UVС 254 (mod. 88X0)
*/
UVC = 524288,
/**
* UVB 313 (mod. 88X0)
*/
UVB = 1048576,
/**
* White oblique light
*/
WHITE_OBL = 2097152,
/**
* For internal use
*/
WHITE_SPECIAL = 4194304,
/**
* White UV
*/
WHITE_UV = 134,
/**
* White full hologram
*/
WHITE_FULL_HOLO = 67108870,
/**
* HR light
*/
HR_LIGHT = 1073741824,
/**
* HR white
*/
HR_WHITE = 1073741830,
/**
* HR UV
*/
HR_UV = 1073741952,
/**
* HR IR
*/
HR_IR = 1073741848
AXIAL_WHITE_FULL = 3072
}


Expand Down
2 changes: 1 addition & 1 deletion src/models/one-candidate.ts
Original file line number Diff line number Diff line change
Expand Up @@ -45,7 +45,7 @@ export interface OneCandidate {
*/
'P': number;
/**
* true if the document of the given type is rotated by 180 degrees
* Indicates if the document of the given type is rotated by 180 degrees
* @type {number}
* @memberof OneCandidate
*/
Expand Down
Loading