Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv_contrib
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_contrib
Commits
2ca605a1
Commit
2ca605a1
authored
Mar 07, 2017
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #1051 from paroj:pyreg_fixup
parents
f9fb12d1
e3d8f7fa
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
6 additions
and
6 deletions
+6
-6
mapaffine.hpp
modules/reg/include/opencv2/reg/mapaffine.hpp
+1
-1
mapprojec.hpp
modules/reg/include/opencv2/reg/mapprojec.hpp
+1
-1
mapaffine.cpp
modules/reg/src/mapaffine.cpp
+2
-2
mapprojec.cpp
modules/reg/src/mapprojec.cpp
+2
-2
No files found.
modules/reg/include/opencv2/reg/mapaffine.hpp
View file @
2ca605a1
...
...
@@ -62,7 +62,7 @@ public:
* \param[in] linTr Linear part of the affine transformation
* \param[in] shift Displacement part of the affine transformation
*/
MapAffine
(
const
cv
::
Matx
<
double
,
2
,
2
>&
linTr
,
const
cv
::
Vec
<
double
,
2
>&
shift
);
CV_WRAP
MapAffine
(
InputArray
linTr
,
InputArray
shift
);
/*!
* Destructor
...
...
modules/reg/include/opencv2/reg/mapprojec.hpp
View file @
2ca605a1
...
...
@@ -62,7 +62,7 @@ public:
* Constructor providing explicit values
* \param[in] projTr Projective transformation
*/
MapProjec
(
const
cv
::
Matx
<
double
,
3
,
3
>&
projTr
);
CV_WRAP
MapProjec
(
InputArray
projTr
);
/*!
* Destructor
...
...
modules/reg/src/mapaffine.cpp
View file @
2ca605a1
...
...
@@ -51,8 +51,8 @@ MapAffine::MapAffine()
}
////////////////////////////////////////////////////////////////////////////////////////////////////
MapAffine
::
MapAffine
(
const
Matx
<
double
,
2
,
2
>&
linTr
,
const
Vec
<
double
,
2
>&
shift
)
:
linTr_
(
linTr
),
shift_
(
shift
)
MapAffine
::
MapAffine
(
InputArray
linTr
,
InputArray
shift
)
:
linTr_
(
linTr
.
getMat
()),
shift_
(
shift
.
getMat
()
)
{
}
...
...
modules/reg/src/mapprojec.cpp
View file @
2ca605a1
...
...
@@ -51,8 +51,8 @@ MapProjec::MapProjec()
}
////////////////////////////////////////////////////////////////////////////////////////////////////
MapProjec
::
MapProjec
(
const
Matx
<
double
,
3
,
3
>&
projTr
)
:
projTr_
(
projTr
)
MapProjec
::
MapProjec
(
InputArray
projTr
)
:
projTr_
(
projTr
.
getMat
()
)
{
}
...
...
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