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
0aab7795
Commit
0aab7795
authored
Oct 24, 2014
by
Alexander Karsakov
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Overload PlaneWarper::buildMaps method from base class
parent
62d43938
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
8 additions
and
2 deletions
+8
-2
warpers.hpp
...es/stitching/include/opencv2/stitching/detail/warpers.hpp
+1
-0
warpers.cl
modules/stitching/src/opencl/warpers.cl
+2
-2
warpers.cpp
modules/stitching/src/warpers.cpp
+5
-0
No files found.
modules/stitching/include/opencv2/stitching/detail/warpers.hpp
View file @
0aab7795
...
...
@@ -135,6 +135,7 @@ public:
Point2f
warpPoint
(
const
Point2f
&
pt
,
InputArray
K
,
InputArray
R
,
InputArray
T
);
virtual
Rect
buildMaps
(
Size
src_size
,
InputArray
K
,
InputArray
R
,
InputArray
T
,
OutputArray
xmap
,
OutputArray
ymap
);
Rect
buildMaps
(
Size
src_size
,
InputArray
K
,
InputArray
R
,
OutputArray
xmap
,
OutputArray
ymap
);
virtual
Point
warp
(
InputArray
src
,
InputArray
K
,
InputArray
R
,
InputArray
T
,
int
interp_mode
,
int
border_mode
,
OutputArray
dst
);
...
...
modules/stitching/src/opencl/warpers.cl
View file @
0aab7795
...
...
@@ -57,7 +57,7 @@ __kernel void buildWarpPlaneMaps(__global uchar * xmapptr, int xmap_step, int xm
int
ymap_index
=
mad24
(
dv0,
ymap_step,
mad24
(
du,
(
int
)
sizeof
(
float
)
,
ymap_offset
))
;
float
u
=
tl_u
+
du
;
float
x_
=
u
*
scale
-
ct[0]
;
float
x_
=
fma
(
u,
scale,
-ct[0]
)
;
float
ct1
=
1
-
ct[2]
;
for
(
int
dv
=
dv0,
dv1
=
min
(
rows,
dv0
+
rowsPerWI
)
; dv < dv1; ++dv, xmap_index += xmap_step,
...
...
@@ -67,7 +67,7 @@ __kernel void buildWarpPlaneMaps(__global uchar * xmapptr, int xmap_step, int xm
__global
float
*
ymap
=
(
__global
float
*
)(
ymapptr
+
ymap_index
)
;
float
v
=
tl_v
+
dv
;
float
y_
=
v
*
scale
-
ct[1]
;
float
y_
=
fma
(
v,
scale,
-ct[1]
)
;
float
x
=
fma
(
ck_rinv[0],
x_,
fma
(
ck_rinv[1],
y_,
ck_rinv[2]
*
ct1
))
;
float
y
=
fma
(
ck_rinv[3],
x_,
fma
(
ck_rinv[4],
y_,
ck_rinv[5]
*
ct1
))
;
...
...
modules/stitching/src/warpers.cpp
View file @
0aab7795
...
...
@@ -87,6 +87,11 @@ Point2f PlaneWarper::warpPoint(const Point2f &pt, InputArray K, InputArray R, In
return
uv
;
}
Rect
PlaneWarper
::
buildMaps
(
Size
src_size
,
InputArray
K
,
InputArray
R
,
OutputArray
xmap
,
OutputArray
ymap
)
{
return
buildMaps
(
src_size
,
K
,
R
,
Mat
::
zeros
(
3
,
1
,
CV_32FC1
),
xmap
,
ymap
);
}
Rect
PlaneWarper
::
buildMaps
(
Size
src_size
,
InputArray
K
,
InputArray
R
,
InputArray
T
,
OutputArray
_xmap
,
OutputArray
_ymap
)
{
projector_
.
setCameraParams
(
K
,
R
,
T
);
...
...
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