From 8f4d63913a4a3cff67e399b89b563fd7e7ce9d60 Mon Sep 17 00:00:00 2001 From: Vladislav Vinogradov Date: Mon, 13 Feb 2012 13:29:28 +0000 Subject: [PATCH] minor --- modules/gpu/perf/perf_video.cpp | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/modules/gpu/perf/perf_video.cpp b/modules/gpu/perf/perf_video.cpp index 4ba1780..e81655e 100644 --- a/modules/gpu/perf/perf_video.cpp +++ b/modules/gpu/perf/perf_video.cpp @@ -11,8 +11,8 @@ GPU_PERF_TEST_1(BroxOpticalFlow, cv::gpu::DeviceInfo) cv::gpu::setDevice(devInfo.deviceID()); - cv::Mat frame0_host = readImage("gpu/perf/aloe.jpg", cv::IMREAD_GRAYSCALE); - cv::Mat frame1_host = readImage("gpu/perf/aloeR.jpg", cv::IMREAD_GRAYSCALE); + cv::Mat frame0_host = readImage("gpu/opticalflow/frame0.png", cv::IMREAD_GRAYSCALE); + cv::Mat frame1_host = readImage("gpu/opticalflow/frame1.png", cv::IMREAD_GRAYSCALE); ASSERT_FALSE(frame0_host.empty()); ASSERT_FALSE(frame1_host.empty()); @@ -202,8 +202,8 @@ GPU_PERF_TEST_1(PyrLKOpticalFlowDense, cv::gpu::DeviceInfo) cv::gpu::setDevice(devInfo.deviceID()); - cv::Mat frame0_host = readImage("gpu/perf/aloe.jpg", cv::IMREAD_GRAYSCALE); - cv::Mat frame1_host = readImage("gpu/perf/aloeR.jpg", cv::IMREAD_GRAYSCALE); + cv::Mat frame0_host = readImage("gpu/opticalflow/frame0.png", cv::IMREAD_GRAYSCALE); + cv::Mat frame1_host = readImage("gpu/opticalflow/frame1.png", cv::IMREAD_GRAYSCALE); ASSERT_FALSE(frame0_host.empty()); ASSERT_FALSE(frame1_host.empty()); -- 2.7.4