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
c8938d8d
Commit
c8938d8d
authored
May 22, 2014
by
Vlad Shakhuro
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Add define guards
parent
4a3ab904
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
18 additions
and
6 deletions
+18
-6
acffeature.hpp
modules/adas/include/acffeature.hpp
+6
-2
icfdetector.hpp
modules/adas/include/icfdetector.hpp
+6
-2
waldboost.hpp
modules/adas/include/waldboost.hpp
+6
-2
No files found.
modules/adas/include/acffeature.hpp
View file @
c8938d8d
...
...
@@ -39,6 +39,9 @@ the use of this software, even if advised of the possibility of such damage.
*/
#ifndef __OPENCV_ADAS_ACFFEATURE_HPP__
#define __OPENCV_ADAS_ACFFEATURE_HPP__
class
ACFFeature
{
public
:
...
...
@@ -116,4 +119,6 @@ private:
Returns vector of distinct acf features
*/
std
::
vector
<
ACFFeature
>
generateFeatures
(
Size
window_size
,
size_t
count
=
UINT_MAX
,
int
seed
=
0
);
\ No newline at end of file
generateFeatures
(
Size
window_size
,
size_t
count
=
UINT_MAX
,
int
seed
=
0
);
#endif
/* __OPENCV_ADAS_ACFFEATURE_HPP__ */
modules/adas/include/icfdetector.hpp
View file @
c8938d8d
...
...
@@ -39,6 +39,9 @@ the use of this software, even if advised of the possibility of such damage.
*/
#ifndef __OPENCV_ADAS_ICFDETECTOR_HPP__
#define __OPENCV_ADAS_ICFDETECTOR_HPP__
class
ICFDetector
{
public
:
...
...
@@ -89,4 +92,6 @@ public:
/* Save detector in file, return true on success, false otherwise */
bool
save
(
const
std
::
string
&
filename
);
};
\ No newline at end of file
};
#endif
/* __OPENCV_ADAS_ICFDETECTOR_HPP__ */
modules/adas/include/waldboost.hpp
View file @
c8938d8d
...
...
@@ -39,6 +39,9 @@ the use of this software, even if advised of the possibility of such damage.
*/
#ifndef __OPENCV_ADAS_WALDBOOST_HPP__
#define __OPENCV_ADAS_WALDBOOST_HPP__
class
Stump
{
public
:
...
...
@@ -119,4 +122,6 @@ private:
/* Save WaldBoost to FileStorage */
cv
::
FileStorage
&
operator
<<
(
cv
::
FileStorage
&
out
,
const
WaldBoost
&
classifier
);
/* Load WaldBoost from FileStorage */
cv
::
FileStorage
&
operator
>>
(
cv
::
FileStorage
&
in
,
WaldBoost
&
classifier
);
\ No newline at end of file
cv
::
FileStorage
&
operator
>>
(
cv
::
FileStorage
&
in
,
WaldBoost
&
classifier
);
#endif
/* __OPENCV_ADAS_WALDBOOST_HPP__ */
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