Fixed warning
This commit is contained in:
parent
3323ee9d18
commit
faf845d31f
@ -59,7 +59,7 @@ float calcBlurriness(const Mat &frame)
|
||||
double normGx = norm(Gx);
|
||||
double normGy = norm(Gx);
|
||||
double sumSq = normGx*normGx + normGy*normGy;
|
||||
return 1.f / (sumSq / frame.size().area() + 1e-6f);
|
||||
return static_cast<float>(1. / (sumSq / frame.size().area() + 1e-6));
|
||||
}
|
||||
|
||||
|
||||
|
Loading…
x
Reference in New Issue
Block a user