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
07a76464
Commit
07a76464
authored
Sep 09, 2014
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #86 from ubisum/line_descriptor_module
Removed optim dependence
parents
ad5de309
b0cb1c0d
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
3 additions
and
3 deletions
+3
-3
CMakeLists.txt
modules/line_descriptor/CMakeLists.txt
+1
-1
binary_descriptor_matcher.cpp
modules/line_descriptor/src/binary_descriptor_matcher.cpp
+2
-2
No files found.
modules/line_descriptor/CMakeLists.txt
View file @
07a76464
set
(
the_description
"Line descriptor"
)
ocv_define_module
(
line_descriptor opencv_features2d opencv_imgproc opencv_
optim
)
ocv_define_module
(
line_descriptor opencv_features2d opencv_imgproc opencv_
highgui
)
modules/line_descriptor/src/binary_descriptor_matcher.cpp
View file @
07a76464
...
...
@@ -871,7 +871,7 @@ BinaryDescriptorMatcher::BucketGroup::~BucketGroup()
{
}
void
BinaryDescriptorMatcher
::
BucketGroup
::
insert_value
(
std
::
vector
<
uint32_t
>&
vec
,
int
index
,
UINT32
data
)
void
BinaryDescriptorMatcher
::
BucketGroup
::
insert_value
(
std
::
vector
<
uint32_t
>&
vec
,
int
index
,
UINT32
data
)
{
if
(
vec
.
size
()
>
1
)
{
...
...
@@ -915,7 +915,7 @@ void BinaryDescriptorMatcher::BucketGroup::push_value( std::vector<uint32_t>& ve
else
{
vec
=
std
::
vector
<
uint32_t
>
(
2
+
ARRAY_RESIZE_ADD_FACTOR
,
0
);
vec
=
std
::
vector
<
uint32_t
>
(
2
+
(
uint32_t
)
ARRAY_RESIZE_ADD_FACTOR
,
0
);
vec
[
0
]
=
1
;
vec
[
1
]
=
1
;
vec
[
2
]
=
Data
;
...
...
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