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
d1265a9d
Commit
d1265a9d
authored
Jul 31, 2014
by
biagio montesano
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Converted KeyLine from class to struct
parent
421b093f
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
2 additions
and
2 deletions
+2
-2
descriptor.hpp
...descriptor/include/opencv2/line_descriptor/descriptor.hpp
+1
-1
binary_descriptor_matcher.cpp
modules/line_descriptor/src/binary_descriptor_matcher.cpp
+1
-1
No files found.
modules/line_descriptor/include/opencv2/line_descriptor/descriptor.hpp
View file @
d1265a9d
...
...
@@ -58,7 +58,7 @@ namespace cv
CV_EXPORTS
bool
initModule_line_descriptor
();
class
CV_EXPORTS_W
KeyLine
struct
CV_EXPORTS_W_SIMPLE
KeyLine
{
public
:
/* orientation of the line */
...
...
modules/line_descriptor/src/binary_descriptor_matcher.cpp
View file @
d1265a9d
...
...
@@ -105,7 +105,7 @@ void BinaryDescriptorMatcher::checkKDistances( UINT32 * numres, int k, std::vect
{
if
(
(
*
(
numres_tmp
+
j
)
)
>
0
)
{
for
(
int
i
=
0
;
i
<
(
*
(
numres_tmp
+
j
)
)
&&
k_to_found
>
0
;
i
++
)
for
(
int
i
=
0
;
i
<
(
int
)(
*
(
numres_tmp
+
j
)
)
&&
k_to_found
>
0
;
i
++
)
{
k_distances
.
push_back
(
j
);
k_to_found
--
;
...
...
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