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
3a8e15fa
Commit
3a8e15fa
authored
May 09, 2014
by
Ievgen Khvedchenia
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix documentation warnings
parent
c4e49463
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
6 additions
and
6 deletions
+6
-6
features2d.hpp
modules/features2d/include/opencv2/features2d.hpp
+2
-2
akaze.cpp
modules/features2d/src/akaze.cpp
+2
-2
kaze.cpp
modules/features2d/src/kaze.cpp
+2
-2
No files found.
modules/features2d/include/opencv2/features2d.hpp
View file @
3a8e15fa
...
...
@@ -900,7 +900,7 @@ public:
};
CV_WRAP
KAZE
();
explicit
KAZE
(
DESCRIPTOR_TYPE
descriptor_type
,
bool
_extended
,
bool
_
upright
);
explicit
KAZE
(
DESCRIPTOR_TYPE
descriptor_type
,
bool
extended
,
bool
upright
);
virtual
~
KAZE
();
...
...
@@ -944,7 +944,7 @@ public:
};
CV_WRAP
AKAZE
();
explicit
AKAZE
(
DESCRIPTOR_TYPE
descriptor_type
,
int
_descriptor_size
=
0
,
int
_
descriptor_channels
=
3
);
explicit
AKAZE
(
DESCRIPTOR_TYPE
descriptor_type
,
int
descriptor_size
=
0
,
int
descriptor_channels
=
3
);
virtual
~
AKAZE
();
...
...
modules/features2d/src/akaze.cpp
View file @
3a8e15fa
...
...
@@ -60,8 +60,8 @@ namespace cv
{
}
AKAZE
::
AKAZE
(
DESCRIPTOR_TYPE
descriptor_type
,
int
_descriptor_size
,
int
_descriptor_channels
)
:
descriptor
(
descriptor_type
)
AKAZE
::
AKAZE
(
DESCRIPTOR_TYPE
_
descriptor_type
,
int
_descriptor_size
,
int
_descriptor_channels
)
:
descriptor
(
_
descriptor_type
)
,
descriptor_channels
(
_descriptor_channels
)
,
descriptor_size
(
_descriptor_size
)
{
...
...
modules/features2d/src/kaze.cpp
View file @
3a8e15fa
...
...
@@ -59,8 +59,8 @@ namespace cv
{
}
KAZE
::
KAZE
(
DESCRIPTOR_TYPE
descriptor_type
,
bool
_extended
,
bool
_upright
)
:
descriptor
(
descriptor_type
)
KAZE
::
KAZE
(
DESCRIPTOR_TYPE
_
descriptor_type
,
bool
_extended
,
bool
_upright
)
:
descriptor
(
_
descriptor_type
)
,
extended
(
_extended
)
,
upright
(
_upright
)
{
...
...
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