Build fixes for GPU samples.

This commit is contained in:
Alexander Smorkalov
2015-01-13 13:22:41 +03:00
parent c0d76ef984
commit b0c5f49170
3 changed files with 6 additions and 7 deletions

View File

@@ -72,7 +72,7 @@ int main()
}
// Execute calculation in several threads, 1 GPU per thread
parallel_for_(cv::Range(0, num_devices, Worker());
parallel_for_(cv::Range(0, num_devices), Worker());
return 0;
}