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
a73b509b
Commit
a73b509b
authored
Oct 18, 2011
by
Marius Muja
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Clang compilation fixes, closes #1432
parent
5eee9e6f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
1 deletion
+7
-1
any.h
modules/flann/include/opencv2/flann/any.h
+6
-0
lsh_index.h
modules/flann/include/opencv2/flann/lsh_index.h
+1
-1
No files found.
modules/flann/include/opencv2/flann/any.h
View file @
a73b509b
...
...
@@ -30,6 +30,12 @@ struct empty_any
{
};
inline
std
::
ostream
&
operator
<<
(
std
::
ostream
&
out
,
const
empty_any
&
)
{
out
<<
"[empty_any]"
;
return
out
;
}
struct
base_any_policy
{
virtual
void
static_delete
(
void
**
x
)
=
0
;
...
...
modules/flann/include/opencv2/flann/lsh_index.h
View file @
a73b509b
...
...
@@ -56,7 +56,7 @@ namespace cvflann
struct
LshIndexParams
:
public
IndexParams
{
LshIndexParams
(
unsigned
int
table_number
,
unsigned
int
key_size
,
unsigned
int
multi_probe_level
)
LshIndexParams
(
unsigned
int
table_number
=
12
,
unsigned
int
key_size
=
20
,
unsigned
int
multi_probe_level
=
2
)
{
(
*
this
)[
"algorithm"
]
=
FLANN_INDEX_LSH
;
// The number of hash tables to use
...
...
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