1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-29 07:13:02 +04:00

Fixed several issues found by static analysis

This commit is contained in:
Maksim Shabunin
2021-12-15 12:49:13 +03:00
committed by Maksim Shabunin
parent d8b1fc45aa
commit a079c2eb7c
5 changed files with 11 additions and 5 deletions
+2 -2
View File
@@ -45,8 +45,8 @@ public:
double match(InputArray _face_feature1, InputArray _face_feature2, int dis_type) const override
{
Mat face_feature1 = _face_feature1.getMat(), face_feature2 = _face_feature2.getMat();
face_feature1 /= norm(face_feature1);
face_feature2 /= norm(face_feature2);
normalize(face_feature1, face_feature1);
normalize(face_feature2, face_feature2);
if(dis_type == DisType::FR_COSINE){
return sum(face_feature1.mul(face_feature2))[0];