Appearance
Vital Signs
The Binah.ai SDK measures a comprehensive range of vital signs and physiological indicators. For the sake of brevity, we refer to the set of physical indicators calculated by the SDK as "vital signs". The vital sign results provided at the end of the measurement include both the vital sign values and the vital sign confidence levels.
Information on the supported vital signs can be found on the Binah.ai Vital Signs and Health Indicators Information page.
Note
In order to receive a result for a specific vital sign, the vital sign must be enabled. Information on enabled vital signs can be found on the Enabled Vital Signs page.
The application can receive vital sign values by implementing VitalSignsListener
:
Dart
@override
void onVitalSign(VitalSign vitalSign) {
// Handle vital sign result
}
@override
void onFinalResults(VitalSignsResults results) {
// Handle the final results of the measurements
}
The vital sign values measured by the SDK are reported at two stages of the measurement:
- Instantaneous results - available during the measurement.
- Final results - available upon successful completion of a measurement.
Instantaneous Vital Signs Values
Instantaneous vital sign values are provided as soon as they become available. To receive instantaneous vital sign results, the application can implement the onVitalSign
method as part of VitalSignsListener
.
Dart
@override
void onVitalSign(VitalSign vitalSign) {
// Handle vital sign result
}
Instantaneous vital sign values can be received for the following vital signs during the measurement:
Final Results
Final vital sign results are calculated at the end of a measurement.
The application can receive the final vital signs results by implementing the onFinalResults
method as part of VitalSignsListener
.
Dart
@override
void onFinalResults(VitalSignsResults results) {
// Handle the final results of the measurements
}