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
1a88b254
Commit
1a88b254
authored
Dec 10, 2015
by
Vadim Pisarevsky
Browse files
Options
Browse Files
Download
Plain Diff
Merge pull request #449 from Audenrith:EnableAccessToUKFErrorCovariance
parents
051759c1
6259c1e4
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
17 additions
and
0 deletions
+17
-0
kalman_filters.hpp
modules/tracking/include/opencv2/tracking/kalman_filters.hpp
+5
-0
augmented_unscented_kalman.cpp
modules/tracking/src/augmented_unscented_kalman.cpp
+6
-0
unscented_kalman.cpp
modules/tracking/src/unscented_kalman.cpp
+6
-0
No files found.
modules/tracking/include/opencv2/tracking/kalman_filters.hpp
View file @
1a88b254
...
...
@@ -80,6 +80,11 @@ public:
*/
virtual
Mat
getMeasurementNoiseCov
()
const
=
0
;
/**
* @return the error cross-covariance matrix.
*/
virtual
Mat
getErrorCov
()
const
=
0
;
/**
* @return the current estimate of the state.
*/
...
...
modules/tracking/src/augmented_unscented_kalman.cpp
View file @
1a88b254
...
...
@@ -195,6 +195,7 @@ public:
Mat
getProcessNoiseCov
()
const
;
Mat
getMeasurementNoiseCov
()
const
;
Mat
getErrorCov
()
const
;
Mat
getState
()
const
;
...
...
@@ -425,6 +426,11 @@ Mat AugmentedUnscentedKalmanFilterImpl::getMeasurementNoiseCov() const
return
measurementNoiseCov
.
clone
();
}
Mat
AugmentedUnscentedKalmanFilterImpl
::
getErrorCov
()
const
{
return
errorCov
.
clone
();
}
Mat
AugmentedUnscentedKalmanFilterImpl
::
getState
()
const
{
return
state
.
clone
();
...
...
modules/tracking/src/unscented_kalman.cpp
View file @
1a88b254
...
...
@@ -189,6 +189,7 @@ public:
// Get system parameters
Mat
getProcessNoiseCov
()
const
;
Mat
getMeasurementNoiseCov
()
const
;
Mat
getErrorCov
()
const
;
// Get the state estimate
Mat
getState
()
const
;
...
...
@@ -400,6 +401,11 @@ Mat UnscentedKalmanFilterImpl::getMeasurementNoiseCov() const
return
measurementNoiseCov
.
clone
();
}
Mat
UnscentedKalmanFilterImpl
::
getErrorCov
()
const
{
return
errorCov
.
clone
();
}
Mat
UnscentedKalmanFilterImpl
::
getState
()
const
{
return
state
.
clone
();
...
...
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