VerifyOptions
data class VerifyOptions(val faceMinWidth: Int, val faceMinHeight: Int, val faceMaxWidth: Int, val faceMaxHeight: Int, val confidence: Float)
VerifyOptions is that Face Detection will verify if the input is satisfied with the given options. Options
faceMinWidth: the minimum of the face width. Default is 100.
faceMinHeight: the minimum of the face height. Default is 100.
faceMaxWidth: the maximum of the face width. Default is 400.
faceMaxHeight: the maximum of the face height. Default is 600.
confidence: the confidence of the face detection result. Default is 0.95.