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
88bae7be
Commit
88bae7be
authored
Jul 01, 2014
by
jaco
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
SuBSENSE porting: compiling errors fixed
parent
00d9ef42
Expand all
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
4 additions
and
4 deletions
+4
-4
CMakeLists.txt
modules/saliency/CMakeLists.txt
+1
-1
saliencySpecializedClasses.hpp
...y/include/opencv2/saliency/saliencySpecializedClasses.hpp
+0
-0
BackgroundSubtractorLBSP.h
modules/saliency/src/SuBSENSE/BackgroundSubtractorLBSP.h
+1
-1
motionSaliencySuBSENSE.cpp
modules/saliency/src/SuBSENSE/motionSaliencySuBSENSE.cpp
+0
-0
saliency_init.cpp
modules/saliency/src/saliency_init.cpp
+2
-2
No files found.
modules/saliency/CMakeLists.txt
View file @
88bae7be
set
(
the_description
"Saliency API"
)
ocv_define_module
(
saliency opencv_imgproc opencv_highgui
)
ocv_define_module
(
saliency opencv_imgproc opencv_highgui
opencv_features2d
)
modules/saliency/include/opencv2/saliency/saliencySpecializedClasses.hpp
View file @
88bae7be
This diff is collapsed.
Click to expand it.
modules/saliency/src/SuBSENSE/BackgroundSubtractorLBSP.h
View file @
88bae7be
...
...
@@ -13,7 +13,7 @@
This algorithm is currently NOT thread-safe.
*/
class
BackgroundSubtractorLBSP
:
public
cv
::
BackgroundSubtractor
{
class
BackgroundSubtractorLBSP
/* : public cv::BackgroundSubtractor */
{
public
:
//! full constructor
BackgroundSubtractorLBSP
(
float
fRelLBSPThreshold
,
size_t
nDescDistThreshold
,
size_t
nLBSPThresholdOffset
=
0
);
...
...
modules/saliency/src/SuBSENSE/motionSaliencySuBSENSE.cpp
View file @
88bae7be
This diff is collapsed.
Click to expand it.
modules/saliency/src/saliency_init.cpp
View file @
88bae7be
...
...
@@ -52,7 +52,7 @@ CV_INIT_ALGORITHM(
reinterpret_cast
<
SizeGetter
>
(
&
StaticSaliencySpectralResidual
::
getWsize
),
reinterpret_cast
<
SizeSetter
>
(
&
StaticSaliencySpectralResidual
::
setWsize
)
)
);
CV_INIT_ALGORITHM
(
MotionSaliency
PBAS
,
"SALIENCY.PBAS
"
,
);
CV_INIT_ALGORITHM
(
MotionSaliency
SuBSENSE
,
"SALIENCY.SuBSENSE
"
,
);
CV_INIT_ALGORITHM
(
ObjectnessBING
,
"SALIENCY.BING"
,
...
...
@@ -62,7 +62,7 @@ bool initModule_saliency( void )
{
bool
all
=
true
;
all
&=
!
StaticSaliencySpectralResidual_info_auto
.
name
().
empty
();
all
&=
!
MotionSaliency
PBAS
_info_auto
.
name
().
empty
();
all
&=
!
MotionSaliency
SuBSENSE
_info_auto
.
name
().
empty
();
all
&=
!
ObjectnessBING_info_auto
.
name
().
empty
();
return
all
;
...
...
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