mirror of
https://github.com/opencv/opencv.git
synced 2025-01-18 06:03:15 +08:00
added bigger images for SURF performance test (it shows better results on them)
This commit is contained in:
parent
55a8d03888
commit
cc3eec546e
BIN
samples/gpu/aloeL.jpg
Normal file
BIN
samples/gpu/aloeL.jpg
Normal file
Binary file not shown.
After Width: | Height: | Size: 308 KiB |
BIN
samples/gpu/aloeR.jpg
Normal file
BIN
samples/gpu/aloeR.jpg
Normal file
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…
Reference in New Issue
Block a user