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
e775831d
Commit
e775831d
authored
Dec 15, 2021
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交代码
parent
7f2394f0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
9 additions
and
9 deletions
+9
-9
BaseTracker.h
BaseTracker/BaseTracker.h
+9
-9
No files found.
BaseTracker/BaseTracker.h
View file @
e775831d
...
...
@@ -162,17 +162,17 @@ void BaseTracker<T>::AssociateDetectionsToTrackers(const std::vector<std::vector
int
detect_size
=
detections
.
size
()
*
(
detections
.
size
()
>
0
?
detections
[
0
].
size
()
:
0
);
int
tracker_size
=
tracker_states
.
size
()
*
(
tracker_states
.
size
()
>
0
?
tracker_states
[
0
].
size
()
:
0
);
int
iou_size
=
detections
.
size
()
*
tracker_states
.
size
();
std
::
shared_ptr
<
float
>
detect_ptr
=
std
::
make_shared
<
float
>
(
new
float
[
detect_size
]
);
std
::
shared_ptr
<
float
>
tracker_ptr
=
std
::
make_shared
<
float
>
(
new
float
[
tracker_size
]
);
std
::
shared_ptr
<
float
>
iou_ptr
=
std
::
make_shared
<
float
>
(
new
float
[
iou_size
]
);
std
::
shared_ptr
<
float
>
detect_ptr
=
std
::
shared_ptr
<
float
>
(
new
float
[
detect_size
],
[](
float
*
p
)
{
if
(
p
)
delete
[]
p
;
p
=
nullptr
;
}
);
std
::
shared_ptr
<
float
>
tracker_ptr
=
std
::
shared_ptr
<
float
>
(
new
float
[
tracker_size
],
[](
float
*
p
)
{
if
(
p
)
delete
[]
p
;
p
=
nullptr
;
}
);
std
::
shared_ptr
<
float
>
iou_ptr
=
std
::
shared_ptr
<
float
>
(
new
float
[
iou_size
],
[](
float
*
p
)
{
if
(
p
)
delete
[]
p
;
p
=
nullptr
;
}
);
////bev_overlap(detections.size(), detect_ptr.get(), tracker_states.size(), tracker_ptr.get(), iou_ptr.get());
//
for(int i = 0; i < detections.size(); i++)
//
for (int j = 0; j < tracker_states.size(); j++)
//
{
//
float* i_ptr = iou_ptr.get();
//
iou_matrix[i][j] = i_ptr[i * tracker_states.size() + j];
//
}
for
(
int
i
=
0
;
i
<
detections
.
size
();
i
++
)
for
(
int
j
=
0
;
j
<
tracker_states
.
size
();
j
++
)
{
float
*
i_ptr
=
iou_ptr
.
get
();
iou_matrix
[
i
][
j
]
=
i_ptr
[
i
*
tracker_states
.
size
()
+
j
];
}
}
// Find association
...
...
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