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
ec3a7665
Commit
ec3a7665
authored
Jun 25, 2012
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixed FREAK on Android
parent
acc031aa
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
2 deletions
+3
-2
features2d_init.cpp
modules/features2d/src/features2d_init.cpp
+1
-0
freak.cpp
modules/features2d/src/freak.cpp
+1
-1
freak_demo.cpp
samples/cpp/freak_demo.cpp
+1
-1
No files found.
modules/features2d/src/features2d_init.cpp
View file @
ec3a7665
...
...
@@ -156,6 +156,7 @@ bool cv::initModule_features2d(void)
all
&=
!
FastFeatureDetector_info_auto
.
name
().
empty
();
all
&=
!
StarDetector_info_auto
.
name
().
empty
();
all
&=
!
MSER_info_auto
.
name
().
empty
();
all
&=
!
FREAK_info_auto
.
name
().
empty
();
all
&=
!
ORB_info_auto
.
name
().
empty
();
all
&=
!
GFTTDetector_info_auto
.
name
().
empty
();
all
&=
!
HarrisDetector_info_auto
.
name
().
empty
();
...
...
modules/features2d/src/freak.cpp
View file @
ec3a7665
...
...
@@ -584,7 +584,7 @@ void FREAKImpl::drawPattern()
FREAK
::
FREAK
(
bool
_orientationNormalized
,
bool
_scaleNormalized
,
float
_patternScale
,
int
_nOctaves
,
const
std
::
vector
<
int
>&
_selectedPairs
)
:
orientationNormalized
(
_orientationNormalized
),
scaleNormalized
(
_scaleNormalized
),
patternScale
(
_patternScale
),
nOctaves
(
_nOctaves
),
selectedPairs0
(
_selectedPairs
)
patternScale
(
_patternScale
),
nOctaves
(
_nOctaves
),
extAll
(
false
),
nOctaves0
(
0
),
selectedPairs0
(
_selectedPairs
)
{
}
...
...
samples/cpp/freak_demo.cpp
View file @
ec3a7665
...
...
@@ -46,7 +46,7 @@
using
namespace
cv
;
void
help
(
char
**
argv
)
static
void
help
(
char
**
argv
)
{
std
::
cout
<<
"
\n
Usage: "
<<
argv
[
0
]
<<
" [path/to/image1] [path/to/image2]
\n
"
<<
"This is an example on how to use the keypoint descriptor presented in the following paper:
\n
"
...
...
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