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
2f8b5731
Commit
2f8b5731
authored
May 21, 2014
by
Pierre-Emmanuel Viel
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix local variable shadowing
parent
00367cfb
Show whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
lsh_index.h
modules/flann/include/opencv2/flann/lsh_index.h
+2
-2
No files found.
modules/flann/include/opencv2/flann/lsh_index.h
View file @
2f8b5731
...
...
@@ -118,8 +118,8 @@ public:
if
(
(
indices
.
size
()
==
feature_size_
*
CHAR_BIT
)
||
(
indices
.
size
()
<
key_size_
)
)
{
indices
.
resize
(
feature_size_
*
CHAR_BIT
);
for
(
size_t
i
=
0
;
i
<
feature_size_
*
CHAR_BIT
;
++
i
)
indices
[
i
]
=
i
;
for
(
size_t
j
=
0
;
j
<
feature_size_
*
CHAR_BIT
;
++
j
)
indices
[
j
]
=
j
;
std
::
random_shuffle
(
indices
.
begin
(),
indices
.
end
());
}
...
...
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