StatusCode

enum StatusCode : Internal.EnumLite

Status codes for physiological video processing operations.
Indicates any issues encountered during preliminary visual frame analysis or processing.
Protobuf enum presage.physiology.StatusCode

Entries

Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard
Link copied to clipboard

Properties

Link copied to clipboard
Camera is currently tuning; wait before recording 
CAMERA_TUNING_IN_PROGRESS = 10;
The chest is too far away or insufficient chest area is visible 
CHEST_TOO_FAR_OR_NOT_ENOUGH_SHOWING = 7;
Link copied to clipboard
The detected face is not properly centered in the frame 
FACE_NOT_CENTERED = 3;
Link copied to clipboard
The face size in the frame is outside acceptable range (too big or too small) 
FACE_TOO_BIG_OR_TOO_SMALL = 4;
Link copied to clipboard
The input image lighting is too bright for reliable processing 
IMAGE_TOO_BRIGHT = 6;
Link copied to clipboard
The input image lighting is too dark for reliable processing 
IMAGE_TOO_DARK = 5;
Link copied to clipboard
Multiple faces detected when only one is expected 
MORE_THAN_ONE_FACE_FOUND = 2;
Link copied to clipboard
No faces were detected in the input data 
NO_FACES_FOUND = 1;
Link copied to clipboard
val OK_VALUE: Int = 0
Processing completed successfully without issues 
OK = 0;
Link copied to clipboard
Processing has not been started yet 
PROCESSING_NOT_STARTED = 8;
Link copied to clipboard
User is not authorized to perform this operation 
UNAUTHORIZED = 9;

Functions

Link copied to clipboard
Link copied to clipboard
fun getNumber(): Int
Link copied to clipboard
open fun internalGetValueMap(): Internal.EnumLiteMap<StatusProto.StatusCode>
Link copied to clipboard
open fun internalGetVerifier(): Internal.EnumVerifier
Link copied to clipboard

Returns the enum constant of this type with the specified name. The string must match exactly an identifier used to declare an enum constant in this type. (Extraneous whitespace characters are not permitted.)

Link copied to clipboard

Returns an array containing the constants of this enum type, in the order they're declared. This method may be used to iterate over the constants.