Domain validation
Operating within the dermatological domain, the device requires images containing skin. The domain validator serves as a verifier for the presence of skin structures, providing a straightforward binary True/False output. True indicates the detection of a skin structure, while False indicates its absence.
Images lacking skin structures should not be used for further analysis with the clinical algorithms.
Table of contents
Version 2.1
The domain validator runs regardless of the endpoint, eliminating the need for specific calls. It seamlessly integrates with both the diagnostic support and severity assessment endpoints.
Endpoints
https://ai.legit.health/v2/legit_health/diagnosis_support
https://ai.legit.health/v2/legit_health/severity_assessment
Body Request
The structure of the body request varies according to the specific endpoint, with detailed specifications provided in each endpoint description.
Response
The output of the domain validator can be found in the isDermatologyDomain key, where the True/False value is accessible. The JSON block below is an illustrative sample response, included to show the shape of the data. The values inside it are examples and are not statements of the performance of the device.
{
"mediaValidity": {
"isValid": true,
"metrics": {
"hasEnoughQuality": true,
"isDermatologyDomain": true
},
"score": 66.0
}
}