Fixed warning

pull/13383/head
Alexey Spizhevoy 13 years ago
parent 3323ee9d18
commit faf845d31f
  1. 2
      modules/videostab/src/deblurring.cpp

@ -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…
Cancel
Save