Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
83def21b
Commit
83def21b
authored
Mar 20, 2013
by
Vladislav Vinogradov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
increased time limits in perf tests
parent
321070cc
Hide whitespace changes
Inline
Side-by-side
Showing
6 changed files
with
16 additions
and
8 deletions
+16
-8
perf_calib3d.cpp
modules/gpu/perf/perf_calib3d.cpp
+3
-3
perf_denoising.cpp
modules/gpu/perf/perf_denoising.cpp
+1
-1
perf_features2d.cpp
modules/gpu/perf/perf_features2d.cpp
+2
-0
perf_imgproc.cpp
modules/gpu/perf/perf_imgproc.cpp
+7
-3
perf_objdetect.cpp
modules/gpu/perf/perf_objdetect.cpp
+2
-0
perf_video.cpp
modules/gpu/perf/perf_video.cpp
+1
-1
No files found.
modules/gpu/perf/perf_calib3d.cpp
View file @
83def21b
...
...
@@ -13,7 +13,7 @@ DEF_PARAM_TEST_1(ImagePair, pair_string);
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoBM
,
Values
(
pair_string
(
"gpu/perf/aloe.png"
,
"gpu/perf/aloeR.png"
)))
{
declare
.
time
(
5
.0
);
declare
.
time
(
300
.0
);
const
cv
::
Mat
imgLeft
=
readImage
(
GET_PARAM
(
0
),
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
imgLeft
.
empty
());
...
...
@@ -54,7 +54,7 @@ PERF_TEST_P(ImagePair, Calib3D_StereoBM,
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoBeliefPropagation
,
Values
(
pair_string
(
"gpu/stereobp/aloe-L.png"
,
"gpu/stereobp/aloe-R.png"
)))
{
declare
.
time
(
1
0.0
);
declare
.
time
(
30
0.0
);
const
cv
::
Mat
imgLeft
=
readImage
(
GET_PARAM
(
0
));
ASSERT_FALSE
(
imgLeft
.
empty
());
...
...
@@ -88,7 +88,7 @@ PERF_TEST_P(ImagePair, Calib3D_StereoBeliefPropagation,
PERF_TEST_P
(
ImagePair
,
Calib3D_StereoConstantSpaceBP
,
Values
(
pair_string
(
"gpu/stereobm/aloe-L.png"
,
"gpu/stereobm/aloe-R.png"
)))
{
declare
.
time
(
1
0.0
);
declare
.
time
(
30
0.0
);
const
cv
::
Mat
imgLeft
=
readImage
(
GET_PARAM
(
0
),
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
imgLeft
.
empty
());
...
...
modules/gpu/perf/perf_denoising.cpp
View file @
83def21b
...
...
@@ -64,7 +64,7 @@ PERF_TEST_P(Sz_Depth_Cn_WinSz_BlockSz, Denoising_NonLocalMeans,
Values
(
21
),
Values
(
5
)))
{
declare
.
time
(
60.0
);
declare
.
time
(
60
0
.0
);
const
cv
::
Size
size
=
GET_PARAM
(
0
);
const
int
depth
=
GET_PARAM
(
1
);
...
...
modules/gpu/perf/perf_features2d.cpp
View file @
83def21b
...
...
@@ -55,6 +55,8 @@ PERF_TEST_P(Image_NFeatures, Features2D_ORB,
Combine
(
Values
<
string
>
(
"gpu/perf/aloe.png"
),
Values
(
4000
)))
{
declare
.
time
(
300.0
);
const
cv
::
Mat
img
=
readImage
(
GET_PARAM
(
0
),
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
img
.
empty
());
...
...
modules/gpu/perf/perf_imgproc.cpp
View file @
83def21b
...
...
@@ -632,7 +632,7 @@ DEF_PARAM_TEST_1(Image, string);
PERF_TEST_P
(
Image
,
ImgProc_MeanShiftFiltering
,
Values
<
string
>
(
"gpu/meanshift/cones.png"
))
{
declare
.
time
(
15
.0
);
declare
.
time
(
300
.0
);
const
cv
::
Mat
img
=
readImage
(
GetParam
());
ASSERT_FALSE
(
img
.
empty
());
...
...
@@ -668,7 +668,7 @@ PERF_TEST_P(Image, ImgProc_MeanShiftFiltering,
PERF_TEST_P
(
Image
,
ImgProc_MeanShiftProc
,
Values
<
string
>
(
"gpu/meanshift/cones.png"
))
{
declare
.
time
(
5
.0
);
declare
.
time
(
300
.0
);
const
cv
::
Mat
img
=
readImage
(
GetParam
());
ASSERT_FALSE
(
img
.
empty
());
...
...
@@ -702,7 +702,7 @@ PERF_TEST_P(Image, ImgProc_MeanShiftProc,
PERF_TEST_P
(
Image
,
ImgProc_MeanShiftSegmentation
,
Values
<
string
>
(
"gpu/meanshift/cones.png"
))
{
declare
.
time
(
5
.0
);
declare
.
time
(
300
.0
);
const
cv
::
Mat
img
=
readImage
(
GetParam
());
ASSERT_FALSE
(
img
.
empty
());
...
...
@@ -830,6 +830,8 @@ PERF_TEST_P(Sz_TemplateSz_Cn_Method, ImgProc_MatchTemplate8U,
GPU_CHANNELS_1_3_4
,
ALL_TEMPLATE_METHODS
))
{
declare
.
time
(
300.0
);
const
cv
::
Size
size
=
GET_PARAM
(
0
);
const
cv
::
Size
templ_size
=
GET_PARAM
(
1
);
const
int
cn
=
GET_PARAM
(
2
);
...
...
@@ -868,6 +870,8 @@ PERF_TEST_P(Sz_TemplateSz_Cn_Method, ImgProc_MatchTemplate32F,
GPU_CHANNELS_1_3_4
,
Values
(
TemplateMethod
(
cv
::
TM_SQDIFF
),
TemplateMethod
(
cv
::
TM_CCORR
))))
{
declare
.
time
(
300.0
);
const
cv
::
Size
size
=
GET_PARAM
(
0
);
const
cv
::
Size
templ_size
=
GET_PARAM
(
1
);
const
int
cn
=
GET_PARAM
(
2
);
...
...
modules/gpu/perf/perf_objdetect.cpp
View file @
83def21b
...
...
@@ -19,6 +19,8 @@ PERF_TEST_P(Image, ObjDetect_HOG,
"gpu/caltech/image_00000527_0.png"
,
"gpu/caltech/image_00000574_0.png"
))
{
declare
.
time
(
300.0
);
const
cv
::
Mat
img
=
readImage
(
GetParam
(),
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
img
.
empty
());
...
...
modules/gpu/perf/perf_video.cpp
View file @
83def21b
...
...
@@ -142,7 +142,7 @@ PERF_TEST_P(Image_MinDistance, Video_GoodFeaturesToTrack,
PERF_TEST_P
(
ImagePair
,
Video_BroxOpticalFlow
,
Values
<
pair_string
>
(
make_pair
(
"gpu/opticalflow/frame0.png"
,
"gpu/opticalflow/frame1.png"
)))
{
declare
.
time
(
1
0
);
declare
.
time
(
30
0
);
cv
::
Mat
frame0
=
readImage
(
GetParam
().
first
,
cv
::
IMREAD_GRAYSCALE
);
ASSERT_FALSE
(
frame0
.
empty
());
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment