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
3dd79d68
Commit
3dd79d68
authored
Mar 21, 2018
by
Alexander Alekhin
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
reg: apply CV_OVERRIDE/CV_FINAL
parent
0a00743e
Hide whitespace changes
Inline
Side-by-side
Showing
9 changed files
with
24 additions
and
24 deletions
+24
-24
mapaffine.hpp
modules/reg/include/opencv2/reg/mapaffine.hpp
+4
-4
mappergradaffine.hpp
modules/reg/include/opencv2/reg/mappergradaffine.hpp
+2
-2
mappergradeuclid.hpp
modules/reg/include/opencv2/reg/mappergradeuclid.hpp
+2
-2
mappergradproj.hpp
modules/reg/include/opencv2/reg/mappergradproj.hpp
+2
-2
mappergradshift.hpp
modules/reg/include/opencv2/reg/mappergradshift.hpp
+2
-2
mappergradsimilar.hpp
modules/reg/include/opencv2/reg/mappergradsimilar.hpp
+2
-2
mapperpyramid.hpp
modules/reg/include/opencv2/reg/mapperpyramid.hpp
+2
-2
mapprojec.hpp
modules/reg/include/opencv2/reg/mapprojec.hpp
+4
-4
mapshift.hpp
modules/reg/include/opencv2/reg/mapshift.hpp
+4
-4
No files found.
modules/reg/include/opencv2/reg/mapaffine.hpp
View file @
3dd79d68
...
...
@@ -69,13 +69,13 @@ public:
*/
~
MapAffine
();
CV_WRAP
void
inverseWarp
(
InputArray
img1
,
OutputArray
img2
)
const
;
CV_WRAP
void
inverseWarp
(
InputArray
img1
,
OutputArray
img2
)
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
inverseMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
inverseMap
()
const
CV_OVERRIDE
;
CV_WRAP
void
compose
(
cv
::
Ptr
<
Map
>
map
);
CV_WRAP
void
compose
(
cv
::
Ptr
<
Map
>
map
)
CV_OVERRIDE
;
CV_WRAP
void
scale
(
double
factor
);
CV_WRAP
void
scale
(
double
factor
)
CV_OVERRIDE
;
/*!
* Return linear part of the affine transformation
...
...
modules/reg/include/opencv2/reg/mappergradaffine.hpp
View file @
3dd79d68
...
...
@@ -55,9 +55,9 @@ public:
CV_WRAP
MapperGradAffine
();
~
MapperGradAffine
(
void
);
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
;
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
CV_OVERRIDE
;
};
//! @}
...
...
modules/reg/include/opencv2/reg/mappergradeuclid.hpp
View file @
3dd79d68
...
...
@@ -55,9 +55,9 @@ public:
CV_WRAP
MapperGradEuclid
();
~
MapperGradEuclid
();
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
;
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
CV_OVERRIDE
;
};
//! @}
...
...
modules/reg/include/opencv2/reg/mappergradproj.hpp
View file @
3dd79d68
...
...
@@ -55,9 +55,9 @@ public:
CV_WRAP
MapperGradProj
();
~
MapperGradProj
();
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
;
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
CV_OVERRIDE
;
};
//! @}
...
...
modules/reg/include/opencv2/reg/mappergradshift.hpp
View file @
3dd79d68
...
...
@@ -55,9 +55,9 @@ public:
CV_WRAP
MapperGradShift
();
virtual
~
MapperGradShift
();
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
;
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
CV_OVERRIDE
;
};
//! @}
...
...
modules/reg/include/opencv2/reg/mappergradsimilar.hpp
View file @
3dd79d68
...
...
@@ -55,9 +55,9 @@ public:
CV_WRAP
MapperGradSimilar
();
~
MapperGradSimilar
();
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
;
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
CV_OVERRIDE
;
};
//! @}
...
...
modules/reg/include/opencv2/reg/mapperpyramid.hpp
View file @
3dd79d68
...
...
@@ -61,9 +61,9 @@ public:
*/
CV_WRAP
MapperPyramid
(
Ptr
<
Mapper
>
baseMapper
);
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
;
CV_WRAP
virtual
cv
::
Ptr
<
Map
>
calculate
(
InputArray
img1
,
InputArray
img2
,
cv
::
Ptr
<
Map
>
init
=
cv
::
Ptr
<
Map
>
())
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
getMap
()
const
CV_OVERRIDE
;
CV_PROP_RW
int
numLev_
;
/*!< Number of levels of the pyramid */
CV_PROP_RW
int
numIterPerScale_
;
/*!< Number of iterations at a given scale of the pyramid */
...
...
modules/reg/include/opencv2/reg/mapprojec.hpp
View file @
3dd79d68
...
...
@@ -69,13 +69,13 @@ public:
*/
~
MapProjec
();
CV_WRAP
void
inverseWarp
(
InputArray
img1
,
OutputArray
img2
)
const
;
CV_WRAP
void
inverseWarp
(
InputArray
img1
,
OutputArray
img2
)
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
inverseMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
inverseMap
()
const
CV_OVERRIDE
;
CV_WRAP
void
compose
(
cv
::
Ptr
<
Map
>
map
);
CV_WRAP
void
compose
(
cv
::
Ptr
<
Map
>
map
)
CV_OVERRIDE
;
CV_WRAP
void
scale
(
double
factor
);
CV_WRAP
void
scale
(
double
factor
)
CV_OVERRIDE
;
/*!
* Returns projection matrix
...
...
modules/reg/include/opencv2/reg/mapshift.hpp
View file @
3dd79d68
...
...
@@ -70,13 +70,13 @@ public:
*/
~
MapShift
();
CV_WRAP
void
inverseWarp
(
InputArray
img1
,
OutputArray
img2
)
const
;
CV_WRAP
void
inverseWarp
(
InputArray
img1
,
OutputArray
img2
)
const
CV_OVERRIDE
;
CV_WRAP
cv
::
Ptr
<
Map
>
inverseMap
()
const
;
CV_WRAP
cv
::
Ptr
<
Map
>
inverseMap
()
const
CV_OVERRIDE
;
CV_WRAP
void
compose
(
cv
::
Ptr
<
Map
>
map
);
CV_WRAP
void
compose
(
cv
::
Ptr
<
Map
>
map
)
CV_OVERRIDE
;
CV_WRAP
void
scale
(
double
factor
);
CV_WRAP
void
scale
(
double
factor
)
CV_OVERRIDE
;
/*!
* Return displacement
...
...
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