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
4f24dc09
Commit
4f24dc09
authored
Mar 04, 2015
by
Jonathan Viney
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fix KNN background subtraction not honoring width step.
parent
0b99f6bc
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
43 additions
and
42 deletions
+43
-42
bgfg_KNN.cpp
modules/video/src/bgfg_KNN.cpp
+43
-42
No files found.
modules/video/src/bgfg_KNN.cpp
View file @
4f24dc09
...
...
@@ -458,10 +458,8 @@ CV_INLINE void
uchar
nShadowDetection
)
{
int
size
=
_src
.
rows
*
_src
.
cols
;
int
nchannels
=
CV_MAT_CN
(
_src
.
type
());
const
uchar
*
pDataCurrent
=
_src
.
ptr
(
0
);
uchar
*
pDataOutput
=
_dst
.
ptr
(
0
);
//model
uchar
*
m_aModel
=
_bgmodel
.
ptr
(
0
);
uchar
*
m_nNextLongUpdate
=
_nNextLongUpdate
.
ptr
(
0
);
...
...
@@ -509,48 +507,51 @@ CV_INLINE void
if
(
_nLongCounter
>=
m_nLongUpdate
)
_nLongCounter
=
0
;
//go through the image
for
(
long
i
=
0
;
i
<
size
;
i
++
)
long
i
=
0
;
for
(
long
y
=
0
;
y
<
_src
.
rows
;
y
++
)
{
const
uchar
*
data
=
pDataCurrent
;
pDataCurrent
=
pDataCurrent
+
nchannels
;
//update model+ background subtract
uchar
include
=
0
;
int
result
=
_cvCheckPixelBackgroundNP
(
i
,
data
,
nchannels
,
m_nN
,
m_aModel
,
m_fTb
,
m_nkNN
,
m_fTau
,
m_bShadowDetection
,
include
);
_cvUpdatePixelBackgroundNP
(
i
,
data
,
nchannels
,
m_nN
,
m_aModel
,
m_nNextLongUpdate
,
m_nNextMidUpdate
,
m_nNextShortUpdate
,
m_aModelIndexLong
,
m_aModelIndexMid
,
m_aModelIndexShort
,
m_nLongCounter
,
m_nMidCounter
,
m_nShortCounter
,
m_nLongUpdate
,
m_nMidUpdate
,
m_nShortUpdate
,
include
);
switch
(
result
)
for
(
long
x
=
0
;
x
<
_src
.
cols
;
x
++
)
{
case
0
:
//foreground
(
*
pDataOutput
)
=
255
;
break
;
case
1
:
//background
(
*
pDataOutput
)
=
0
;
break
;
case
2
:
//shadow
(
*
pDataOutput
)
=
nShadowDetection
;
break
;
const
uchar
*
data
=
_src
.
ptr
(
y
,
x
);
//update model+ background subtract
uchar
include
=
0
;
int
result
=
_cvCheckPixelBackgroundNP
(
i
,
data
,
nchannels
,
m_nN
,
m_aModel
,
m_fTb
,
m_nkNN
,
m_fTau
,
m_bShadowDetection
,
include
);
_cvUpdatePixelBackgroundNP
(
i
,
data
,
nchannels
,
m_nN
,
m_aModel
,
m_nNextLongUpdate
,
m_nNextMidUpdate
,
m_nNextShortUpdate
,
m_aModelIndexLong
,
m_aModelIndexMid
,
m_aModelIndexShort
,
m_nLongCounter
,
m_nMidCounter
,
m_nShortCounter
,
m_nLongUpdate
,
m_nMidUpdate
,
m_nShortUpdate
,
include
);
switch
(
result
)
{
case
0
:
//foreground
*
_dst
.
ptr
(
y
,
x
)
=
255
;
break
;
case
1
:
//background
*
_dst
.
ptr
(
y
,
x
)
=
0
;
break
;
case
2
:
//shadow
*
_dst
.
ptr
(
y
,
x
)
=
nShadowDetection
;
break
;
}
i
++
;
}
pDataOutput
++
;
}
};
...
...
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