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
160e2ec6
Commit
160e2ec6
authored
Mar 16, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改接口定义
parent
17faebbe
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
2 additions
and
2 deletions
+2
-2
BaseTracker.h
BaseTracker/BaseTracker.h
+2
-2
No files found.
BaseTracker/BaseTracker.h
View file @
160e2ec6
...
...
@@ -42,7 +42,7 @@ public:
void
AssociateDetectionsToTrackers
(
const
std
::
vector
<
std
::
vector
<
float
>
>&
detections
,
int
_no
/*观测数量*/
,
int
_ns
/*状态数量*/
,
std
::
map
<
uint64_t
,
std
::
shared_ptr
<
T
>
>&
tracks
,
std
::
map
<
uint64_t
,
int
>&
matched
,
std
::
vector
<
int
>&
unmatched_det
);
void
AssociateDetectionsToTrackersEx
(
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_high
,
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_low
,
int
_no
/*观测数量*/
,
int
_ns
/*状态数量*/
,
std
::
map
<
uint64_t
,
std
::
shared_ptr
<
T
>
>&
tracks
,
std
::
map
<
uint64_t
,
int
>&
high_matched
,
std
::
vector
<
int
>&
unmatched_det
,
std
::
map
<
uint64_t
,
int
>&
low_matched
);
void
AssociateDetectionsToTrackersEx
(
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_high
,
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_low
,
int
_no
/*观测数量*/
,
int
_ns
/*状态数量*/
,
std
::
map
<
uint64_t
,
std
::
shared_ptr
<
T
>
>&
tracks
,
std
::
map
<
uint64_t
,
int
>&
high_matched
,
std
::
map
<
uint64_t
,
int
>&
low_matched
,
std
::
vector
<
int
>&
unmatched_det
);
public
:
...
...
@@ -483,7 +483,7 @@ int BaseTracker<T>::Run(const std::vector<std::vector<float> >& dets_high, const
}
template
<
class
T
>
void
BaseTracker
<
T
>::
AssociateDetectionsToTrackersEx
(
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_high
,
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_low
,
int
_no
/*观测数量*/
,
int
_ns
/*状态数量*/
,
std
::
map
<
uint64_t
,
std
::
shared_ptr
<
T
>
>&
tracks
,
std
::
map
<
uint64_t
,
int
>&
high_matched
,
std
::
vector
<
int
>&
unmatched_det
,
std
::
map
<
uint64_t
,
int
>&
low_matched
)
void
BaseTracker
<
T
>::
AssociateDetectionsToTrackersEx
(
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_high
,
const
std
::
vector
<
std
::
vector
<
float
>
>&
dets_low
,
int
_no
/*观测数量*/
,
int
_ns
/*状态数量*/
,
std
::
map
<
uint64_t
,
std
::
shared_ptr
<
T
>
>&
tracks
,
std
::
map
<
uint64_t
,
int
>&
high_matched
,
std
::
map
<
uint64_t
,
int
>&
low_matched
,
std
::
vector
<
int
>&
unmatched_det
)
{
if
(
tracks
.
empty
())
{
...
...
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