diff --git a/samples/gpu/aloeL.jpg b/samples/gpu/aloeL.jpg new file mode 100644 index 0000000000..4c192768e4 Binary files /dev/null and b/samples/gpu/aloeL.jpg differ diff --git a/samples/gpu/aloeR.jpg b/samples/gpu/aloeR.jpg new file mode 100644 index 0000000000..7ecdf48919 Binary files /dev/null and b/samples/gpu/aloeR.jpg differ diff --git a/samples/gpu/bowlingL.png b/samples/gpu/bowlingL.png deleted file mode 100644 index b41cf1b9f1..0000000000 Binary files a/samples/gpu/bowlingL.png and /dev/null differ diff --git a/samples/gpu/bowlingR.png b/samples/gpu/bowlingR.png deleted file mode 100644 index 7e0ff04996..0000000000 Binary files a/samples/gpu/bowlingR.png and /dev/null differ diff --git a/samples/gpu/performance/tests.cpp b/samples/gpu/performance/tests.cpp index 469c84ec67..340d6f11ef 100644 --- a/samples/gpu/performance/tests.cpp +++ b/samples/gpu/performance/tests.cpp @@ -251,10 +251,10 @@ TEST(meanShift) TEST(SURF) { - Mat src1 = imread(abspath("bowlingL.png"), CV_LOAD_IMAGE_GRAYSCALE); - Mat src2 = imread(abspath("bowlingR.png"), CV_LOAD_IMAGE_GRAYSCALE); - if (src1.empty()) throw runtime_error("can't open bowlingL.png"); - if (src2.empty()) throw runtime_error("can't open bowlingR.png"); + Mat src1 = imread(abspath("aloeL.jpg"), CV_LOAD_IMAGE_GRAYSCALE); + Mat src2 = imread(abspath("aloeR.jpg"), CV_LOAD_IMAGE_GRAYSCALE); + if (src1.empty()) throw runtime_error("can't open aloeL.jpg"); + if (src2.empty()) throw runtime_error("can't open aloeR.jpg"); gpu::GpuMat d_src1(src1); gpu::GpuMat d_src2(src2);