Fixed warning

This commit is contained in:
Alexey Spizhevoy
2012-03-21 08:37:24 +00:00
parent 3323ee9d18
commit faf845d31f

View File

@@ -59,7 +59,7 @@ float calcBlurriness(const Mat &frame)
double normGx = norm(Gx); double normGx = norm(Gx);
double normGy = norm(Gx); double normGy = norm(Gx);
double sumSq = normGx*normGx + normGy*normGy; 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));
} }