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
94e2b5c1
Commit
94e2b5c1
authored
Jan 24, 2013
by
Andrey Kamaev
Committed by
OpenCV Buildbot
Jan 24, 2013
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #305 from stephenfalken:2.4
parents
7ad81ed4
195d501b
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
1 deletion
+2
-1
cascadedetect.cpp
modules/objdetect/src/cascadedetect.cpp
+2
-1
No files found.
modules/objdetect/src/cascadedetect.cpp
View file @
94e2b5c1
...
...
@@ -237,7 +237,7 @@ class MeanshiftGrouping
{
public
:
MeanshiftGrouping
(
const
Point3d
&
densKer
,
const
vector
<
Point3d
>&
posV
,
const
vector
<
double
>&
wV
,
double
,
int
maxIter
=
20
)
const
vector
<
double
>&
wV
,
double
eps
,
int
maxIter
=
20
)
{
densityKernel
=
densKer
;
weightsV
=
wV
;
...
...
@@ -246,6 +246,7 @@ public:
meanshiftV
.
resize
(
positionsCount
);
distanceV
.
resize
(
positionsCount
);
iterMax
=
maxIter
;
modeEps
=
eps
;
for
(
unsigned
i
=
0
;
i
<
positionsV
.
size
();
i
++
)
{
...
...
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