change round to cvRound

vs2010 breaks
pull/268/head
berak 10 years ago
parent 03870af365
commit 8247a7a0f5
  1. 2
      modules/xfeatures2d/src/daisy.cpp

@ -1267,7 +1267,7 @@ struct RoundingInvoker : ParallelLoopBody
{
for (int c = range.start; c < range.end; ++c)
{
scale_map->at<float>(r,c) = (float) round( scale_map->at<float>(r,c) );
scale_map->at<float>(r,c) = (float) cvRound( scale_map->at<float>(r,c) );
}
}
int r;

Loading…
Cancel
Save