1
0
mirror of https://github.com/opencv/opencv.git synced 2026-07-30 15:53:03 +04:00

Build warning fixes.

This commit is contained in:
Alexander Smorkalov
2013-04-03 23:11:33 -07:00
parent 1e9ed14205
commit a914088f29
2 changed files with 4 additions and 2 deletions
+1 -1
View File
@@ -1740,7 +1740,7 @@ void cv::resize( InputArray _src, OutputArray _dst, Size dsize,
#ifdef HAVE_TEGRA_OPTIMIZATION
if (tegra::resize(src, dst, inv_scale_x, inv_scale_y, interpolation))
if (tegra::resize(src, dst, (float)inv_scale_x, (float)inv_scale_y, interpolation))
return;
#endif