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
0c644d1e
Commit
0c644d1e
authored
Nov 26, 2019
by
Steve Nicholson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Rename parameter R to H in AffineWarper member declarations
parent
a093a0e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
39 additions
and
4 deletions
+39
-4
warpers.hpp
...es/stitching/include/opencv2/stitching/detail/warpers.hpp
+39
-4
No files found.
modules/stitching/include/opencv2/stitching/detail/warpers.hpp
View file @
0c644d1e
...
...
@@ -219,11 +219,46 @@ public:
*/
AffineWarper
(
float
scale
=
1.
f
)
:
PlaneWarper
(
scale
)
{}
Point2f
warpPoint
(
const
Point2f
&
pt
,
InputArray
K
,
InputArray
R
)
CV_OVERRIDE
;
Rect
buildMaps
(
Size
src_size
,
InputArray
K
,
InputArray
R
,
OutputArray
xmap
,
OutputArray
ymap
)
CV_OVERRIDE
;
Point
warp
(
InputArray
src
,
InputArray
K
,
InputArray
R
,
/** @brief Projects the image point.
@param pt Source point
@param K Camera intrinsic parameters
@param H Camera extrinsic parameters
@return Projected point
*/
Point2f
warpPoint
(
const
Point2f
&
pt
,
InputArray
K
,
InputArray
H
)
CV_OVERRIDE
;
/** @brief Builds the projection maps according to the given camera data.
@param src_size Source image size
@param K Camera intrinsic parameters
@param H Camera extrinsic parameters
@param xmap Projection map for the x axis
@param ymap Projection map for the y axis
@return Projected image minimum bounding box
*/
Rect
buildMaps
(
Size
src_size
,
InputArray
K
,
InputArray
H
,
OutputArray
xmap
,
OutputArray
ymap
)
CV_OVERRIDE
;
/** @brief Projects the image.
@param src Source image
@param K Camera intrinsic parameters
@param H Camera extrinsic parameters
@param interp_mode Interpolation mode
@param border_mode Border extrapolation mode
@param dst Projected image
@return Project image top-left corner
*/
Point
warp
(
InputArray
src
,
InputArray
K
,
InputArray
H
,
int
interp_mode
,
int
border_mode
,
OutputArray
dst
)
CV_OVERRIDE
;
Rect
warpRoi
(
Size
src_size
,
InputArray
K
,
InputArray
R
)
CV_OVERRIDE
;
/**
@param src_size Source image bounding box
@param K Camera intrinsic parameters
@param H Camera extrinsic parameters
@return Projected image minimum bounding box
*/
Rect
warpRoi
(
Size
src_size
,
InputArray
K
,
InputArray
H
)
CV_OVERRIDE
;
protected
:
/** @brief Extracts rotation and translation matrices from matrix H representing
...
...
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