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
e8353d92
Commit
e8353d92
authored
Jun 26, 2015
by
Vladimir
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Fixing whitespaces #2
parent
ecc71c32
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
4 additions
and
7 deletions
+4
-7
TrackingFunctionPF.hpp
modules/tracking/src/TrackingFunctionPF.hpp
+0
-1
tldModel.hpp
modules/tracking/src/tldModel.hpp
+2
-4
trackerMedianFlow.cpp
modules/tracking/src/trackerMedianFlow.cpp
+1
-1
trackerSamplerAlgorithm.cpp
modules/tracking/src/trackerSamplerAlgorithm.cpp
+1
-1
No files found.
modules/tracking/src/TrackingFunctionPF.hpp
View file @
e8353d92
...
...
@@ -24,7 +24,6 @@ namespace cv{
Mat_
<
double
>
HShist
,
Vhist
;
};
TrackingHistogram
_origHist
;
const
TrackingFunctionPF
&
operator
=
(
const
TrackingFunctionPF
&
);
};
...
...
modules/tracking/src/tldModel.hpp
View file @
e8353d92
...
...
@@ -51,7 +51,6 @@ namespace cv
namespace
tld
{
class
TrackerTLDModel
:
public
TrackerModel
...
...
@@ -75,14 +74,13 @@ namespace cv
protected
:
Size
minSize_
;
TrackerTLD
::
Params
params_
;
void
pushIntoModel
(
const
Mat_
<
uchar
>&
example
,
bool
positive
);
void
modelEstimationImpl
(
const
std
::
vector
<
Mat
>&
/*responses*/
){}
void
modelUpdateImpl
(){}
Rect2d
boundingBox_
;
Rect2d
boundingBox_
;
RNG
rng
;
};
}
...
...
modules/tracking/src/trackerMedianFlow.cpp
View file @
e8353d92
...
...
@@ -63,7 +63,7 @@ namespace cv
/*
* TODO:
* add "non-detected" answer in algo --> test it with 2 rects --> frame-by-frame debug in TLD --> test it!!
* take all parameters out
* take all parameters out
* asessment framework
*
*
...
...
modules/tracking/src/trackerSamplerAlgorithm.cpp
View file @
e8353d92
...
...
@@ -385,7 +385,7 @@ TrackerSamplerPF::Params::Params(){
iterationNum
=
20
;
particlesNum
=
100
;
alpha
=
0.9
;
std
=
(
Mat_
<
double
>
(
1
,
4
)
<<
15.0
,
15.0
,
15.0
,
15.0
);
std
=
(
Mat_
<
double
>
(
1
,
4
)
<<
15.0
,
15.0
,
15.0
,
15.0
);
}
TrackerSamplerPF
::
TrackerSamplerPF
(
const
Mat
&
chosenRect
,
const
TrackerSamplerPF
::
Params
&
parameters
)
:
params
(
parameters
),
_function
(
new
TrackingFunctionPF
(
chosenRect
)){
...
...
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