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
ae66ce9d
Commit
ae66ce9d
authored
Nov 19, 2015
by
askourik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add treelookups for nonintel
parent
8b554d3c
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
19 additions
and
10 deletions
+19
-10
features2d.hpp
modules/features2d/include/opencv2/features2d.hpp
+3
-0
agast.cpp
modules/features2d/src/agast.cpp
+0
-0
agast_score.cpp
modules/features2d/src/agast_score.cpp
+0
-0
agast_score.hpp
modules/features2d/src/agast_score.hpp
+6
-0
mser.cpp
modules/features2d/src/mser.cpp
+10
-10
No files found.
modules/features2d/include/opencv2/features2d.hpp
View file @
ae66ce9d
...
...
@@ -424,6 +424,9 @@ circle around this pixel.
AgastFeatureDetector::AGAST_5_8, AgastFeatureDetector::AGAST_7_12d,
AgastFeatureDetector::AGAST_7_12s, AgastFeatureDetector::OAST_9_16
For non-Intel platforms, there is a tree optimised variant of AGAST with same numerical results.
The 32-bit binary tree tables were generated automatically from original code using perl script.
The perl script and examples of tree generation are placed in features2d/doc folder.
Detects corners using the AGAST algorithm by @cite mair2010_agast .
*/
...
...
modules/features2d/src/agast.cpp
View file @
ae66ce9d
This source diff could not be displayed because it is too large. You can
view the blob
instead.
modules/features2d/src/agast_score.cpp
View file @
ae66ce9d
This diff is collapsed.
Click to expand it.
modules/features2d/src/agast_score.hpp
View file @
ae66ce9d
...
...
@@ -52,11 +52,17 @@ The references are:
namespace
cv
{
#if !(defined __i386__ || defined(_M_IX86) || defined __x86_64__ || defined(_M_X64))
int
agast_tree_search
(
const
unsigned
long
table_struct32
[],
int
pixel_
[],
const
unsigned
char
*
const
ptr
,
int
threshold
);
#endif //!(defined __i386__ || defined(_M_IX86) || defined __x86_64__ || defined(_M_X64))
void
makeAgastOffsets
(
int
pixel
[
16
],
int
row_stride
,
int
type
);
template
<
int
type
>
int
agast_cornerScore
(
const
uchar
*
ptr
,
const
int
pixel
[],
int
threshold
);
}
#endif
#endif
modules/features2d/src/mser.cpp
View file @
ae66ce9d
/* Redistribution and use in source and binary forms, with or
* without modification, are permitted provided that the following
* conditions are met:
*
Redistributions of source code must retain the above
*
copyright notice, this list of conditions and the following
*
disclaimer.
*
Redistributions in binary form must reproduce the above
*
copyright notice, this list of conditions and the following
*
disclaimer in the documentation and/or other materials
*
provided with the distribution.
*
The name of Contributor may not be used to endorse or
*
promote products derived from this software without
*
specific prior written permission.
*
Redistributions of source code must retain the above
*
copyright notice, this list of conditions and the following
*
disclaimer.
*
Redistributions in binary form must reproduce the above
*
copyright notice, this list of conditions and the following
*
disclaimer in the documentation and/or other materials
*
provided with the distribution.
*
The name of Contributor may not be used to endorse or
*
promote products derived from this software without
*
specific prior written permission.
*
* THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND
* CONTRIBUTORS "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES,
...
...
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