minor fix in gpu video_writer sample

This commit is contained in:
Vladislav Vinogradov 2012-04-18 11:49:17 +00:00
parent dd6b11b87d
commit e29d41c885

View File

@ -47,7 +47,7 @@ int main(int argc, const char* argv[])
gpu_times.push_back(tm.getTimeMilli());
cv::imshow("CPU", frame);
cv::imshow("GPU", frame);
cv::imshow("GPU", d_frame);
if (cv::waitKey(3) > 0)
break;