added bigger images for SURF performance test (it shows better results on them)

pull/13383/head
Alexey Spizhevoy 14 years ago
parent 55a8d03888
commit cc3eec546e
  1. BIN
      samples/gpu/aloeL.jpg
  2. BIN
      samples/gpu/aloeR.jpg
  3. BIN
      samples/gpu/bowlingL.png
  4. BIN
      samples/gpu/bowlingR.png
  5. 8
      samples/gpu/performance/tests.cpp

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 308 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 467 KiB

Binary file not shown.

Before

Width:  |  Height:  |  Size: 461 KiB

@ -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);

Loading…
Cancel
Save