Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
J
jfx_kalman_filter_src
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
oscar
jfx_kalman_filter_src
Commits
fb4f05fc
Commit
fb4f05fc
authored
Mar 08, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交更新
parent
5b525a51
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
18 additions
and
0 deletions
+18
-0
Track3D.cpp
BaseTracker/Track3D.cpp
+16
-0
Track3D.h
BaseTracker/Track3D.h
+2
-0
No files found.
BaseTracker/Track3D.cpp
View file @
fb4f05fc
...
...
@@ -130,7 +130,23 @@ void Track3D::Predict()
m_points
.
erase
(
m_points
.
begin
());
}
m_points
.
push_back
(
pos
);
//根据上上次的时间戳与上一次的时间戳的间隔来调整预测的数据
uint64_t
interval
=
100
;
if
(
m_obj
&&
m_lastLastTimestamp
!=
0
&&
m_obj
->
frame
>
m_lastLastTimestamp
)
interval
=
m_obj
->
frame
-
m_lastLastTimestamp
;
m_lastLastTimestamp
=
m_obj
->
frame
;
float
v_rate
=
interval
/
100
;
if
(
v_rate
>
1.5
||
v_rate
<
0.5
)
{
SDK_LOG
(
SDK_INFO
,
"predict time error, v_rate = %f, interval = %llu"
,
v_rate
,
interval
);
}
kf_
->
F_
(
7
,
0
)
=
v_rate
;
kf_
->
F_
(
8
,
1
)
=
v_rate
;
kf_
->
F_
(
9
,
2
)
=
v_rate
;
BaseTrack
::
Predict
();
kf_
->
F_
(
7
,
0
)
=
1.0
f
;
kf_
->
F_
(
8
,
1
)
=
1.0
f
;
kf_
->
F_
(
9
,
2
)
=
1.0
f
;
}
void
Track3D
::
Update
(
const
std
::
vector
<
float
>&
data
)
{
...
...
BaseTracker/Track3D.h
View file @
fb4f05fc
...
...
@@ -51,6 +51,8 @@ public:
trackOjbPtr
m_obj
=
nullptr
;
std
::
vector
<
point2d
>
m_points
;
//保存最近的5个移动的点位
uint64_t
m_lastLastTimestamp
=
0
;
//记录上上一次的时间戳
};
double
correct_angle
(
std
::
vector
<
point2d
>&
points
);
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