1.0.2
TeruyaHaroldo
released this
15 Mar 18:42
·
16 commits
to development
since this release
♻️ Refactor
-
Add new attributes in the FaceDetected:
- hasLeftEyeOpenProbability: indicates whether a left eye open probability is available;
- hasRightEyeOpenProbability: indicates whether a right eye open probability is available.
- hasSmilingProbability: indicates whether smiling probability is available.
- hasHeadEulerAngleX: indicates whether the detector found the head x euler angle.
- hasHeadEulerAngleY: indicates whether the detector found the head y euler angle.
- hasHeadEulerAngleZ: indicates whether the detector found the head z euler angle.
-
Changes the attributes in the FaceDetected:
- leftEyeOpenProbability: change from
CGFloat?
toFloat
; - rightEyeOpenProbability: change from
CGFloat?
toFloat
; - smilingProbability: change from
CGFloat?
toFloat
; - headEulerAngleX: change from
CGFloat?
toFloat
; - headEulerAngleY: change from
CGFloat?
toFloat
; - headEulerAngleZ: change from
CGFloat?
toFloat
;
- leftEyeOpenProbability: change from
📝 Update Readme
- Change FaceDetected documentation;
- Update the Usage;