fix compilation on MSVS 2010

pull/2709/head
Alexander Alekhin 11 years ago
parent 72e095b8a5
commit 35eb972e9a
  1. 2
      modules/imgproc/src/corner.cpp

@ -544,7 +544,7 @@ void cv::cornerHarris( InputArray _src, OutputArray _dst, int blockSize, int ksi
scale *= 2.0;
if (depth == CV_8U)
scale *= 255.0;
scale = std::pow(scale, -4.0f);
scale = std::pow(scale, -4.0);
if (ippiHarrisCornerGetBufferSize(roisize, masksize, blockSize, datatype, cn, &bufsize) >= 0)
{

Loading…
Cancel
Save