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
08e4298a
Commit
08e4298a
authored
Oct 23, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #84 from Daniil-Osokin/perfTest-warpPerspective
parents
cd320565
e9ba5c22
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
38 additions
and
22 deletions
+38
-22
perf_warp.cpp
modules/imgproc/perf/perf_warp.cpp
+38
-22
No files found.
modules/imgproc/perf/perf_warp.cpp
View file @
08e4298a
...
...
@@ -15,6 +15,7 @@ CV_ENUM(RemapMode, HALF_SIZE, UPSIDE_DOWN, REFLECTION_X, REFLECTION_BOTH)
typedef
TestBaseWithParam
<
tr1
::
tuple
<
Size
,
InterType
,
BorderMode
>
>
TestWarpAffine
;
typedef
TestBaseWithParam
<
tr1
::
tuple
<
Size
,
InterType
,
BorderMode
>
>
TestWarpPerspective
;
typedef
TestBaseWithParam
<
tr1
::
tuple
<
Size
,
InterType
,
BorderMode
,
MatType
>
>
TestWarpPerspectiveNear_t
;
typedef
TestBaseWithParam
<
tr1
::
tuple
<
MatType
,
Size
,
InterType
,
BorderMode
,
RemapMode
>
>
TestRemap
;
void
update_map
(
const
Mat
&
src
,
Mat
&
map_x
,
Mat
&
map_y
,
const
int
remapMode
);
...
...
@@ -80,44 +81,59 @@ PERF_TEST_P( TestWarpPerspective, WarpPerspective,
SANITY_CHECK
(
dst
);
}
PERF_TEST_P
(
TestWarpPerspective
,
WarpPerspectiveLarge
,
PERF_TEST_P
(
TestWarpPerspective
Near_t
,
WarpPerspectiveNear
,
Combine
(
Values
(
sz3MP
,
sz5MP
),
ValuesIn
(
InterType
::
all
()
),
ValuesIn
(
BorderMode
::
all
()
)
Values
(
Size
(
176
,
144
),
Size
(
320
,
240
),
Size
(
352
,
288
),
Size
(
480
,
480
),
Size
(
640
,
480
),
Size
(
704
,
576
),
Size
(
720
,
408
),
Size
(
720
,
480
),
Size
(
720
,
576
),
Size
(
768
,
432
),
Size
(
800
,
448
),
Size
(
960
,
720
),
Size
(
1024
,
768
),
Size
(
1280
,
720
),
Size
(
1280
,
960
),
Size
(
1360
,
720
),
Size
(
1600
,
1200
),
Size
(
1920
,
1080
),
Size
(
2048
,
1536
),
Size
(
2592
,
1920
),
Size
(
2592
,
1944
),
Size
(
3264
,
2448
),
Size
(
4096
,
3072
),
Size
(
4208
,
3120
)
),
ValuesIn
(
InterType
::
all
()
),
ValuesIn
(
BorderMode
::
all
()
),
Values
(
CV_8UC1
,
CV_8UC4
)
)
)
)
{
Size
s
z
;
int
borderMode
,
interType
;
s
z
=
get
<
0
>
(
GetParam
());
Size
s
ize
;
int
borderMode
,
interType
,
type
;
s
ize
=
get
<
0
>
(
GetParam
());
borderMode
=
get
<
1
>
(
GetParam
());
interType
=
get
<
2
>
(
GetParam
());
type
=
get
<
3
>
(
GetParam
());
Mat
src
,
img
=
imread
(
getDataPath
(
"cv/shared/5MP.png"
));
string
resolution
;
if
(
sz
==
sz3MP
)
resolution
=
"3MP"
;
else
if
(
sz
==
sz5MP
)
resolution
=
"5MP"
;
if
(
type
==
CV_8UC1
)
{
cvtColor
(
img
,
src
,
COLOR_BGR2GRAY
,
1
);
}
else
if
(
type
==
CV_8UC4
)
{
cvtColor
(
img
,
src
,
COLOR_BGR2BGRA
,
4
);
}
else
{
FAIL
();
}
Mat
src
,
img
=
imread
(
getDataPath
(
"cv/shared/"
+
resolution
+
".png"
));
cvtColor
(
img
,
src
,
COLOR_BGR2BGRA
,
4
);
resize
(
src
,
src
,
size
);
int
shift
=
103
;
Mat
srcVertices
=
(
Mat_
<
Vec2f
>
(
1
,
4
)
<<
Vec2f
(
0
,
0
),
Vec2f
(
s
z
.
width
-
1
,
0
),
Vec2f
(
s
z
.
width
-
1
,
sz
.
height
-
1
),
Vec2f
(
0
,
sz
.
height
-
1
));
Mat
dstVertices
=
(
Mat_
<
Vec2f
>
(
1
,
4
)
<<
Vec2f
(
0
,
shift
),
Vec2f
(
s
z
.
width
-
shift
/
2
,
0
),
Vec2f
(
s
z
.
width
-
shift
,
sz
.
height
-
shift
),
Vec2f
(
shift
/
2
,
sz
.
height
-
1
));
int
shift
=
src
.
cols
*
0.04
;
Mat
srcVertices
=
(
Mat_
<
Vec2f
>
(
1
,
4
)
<<
Vec2f
(
0
,
0
),
Vec2f
(
s
ize
.
width
-
1
,
0
),
Vec2f
(
s
ize
.
width
-
1
,
size
.
height
-
1
),
Vec2f
(
0
,
size
.
height
-
1
));
Mat
dstVertices
=
(
Mat_
<
Vec2f
>
(
1
,
4
)
<<
Vec2f
(
0
,
shift
),
Vec2f
(
s
ize
.
width
-
shift
/
2
,
0
),
Vec2f
(
s
ize
.
width
-
shift
,
size
.
height
-
shift
),
Vec2f
(
shift
/
2
,
size
.
height
-
1
));
Mat
warpMat
=
getPerspectiveTransform
(
srcVertices
,
dstVertices
);
Mat
dst
(
s
z
,
CV_8UC4
);
Mat
dst
(
s
ize
,
type
);
declare
.
in
(
src
).
out
(
dst
);
TEST_CYCLE
()
warpPerspective
(
src
,
dst
,
warpMat
,
sz
,
interType
,
borderMode
,
Scalar
::
all
(
150
)
);
{
warpPerspective
(
src
,
dst
,
warpMat
,
size
,
interType
,
borderMode
,
Scalar
::
all
(
150
)
);
}
SANITY_CHECK
(
dst
);
}
...
...
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