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
84bb9e33
Commit
84bb9e33
authored
Mar 25, 2022
by
wanghailong
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
2D跟踪
parent
6e14a134
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 @
84bb9e33
...
...
@@ -494,7 +494,7 @@ void BaseTracker<T>::AssociateDetectionsToTrackersEx(const std::vector<std::vect
}
return
;
}
if
(
dets_high
.
size
()
>
0
)
if
(
dets_high
.
size
()
>
0
)
//高分检测不能为空
{
std
::
vector
<
std
::
vector
<
float
>>
iou_matrix_high
;
// resize IOU matrix based on number of detection and tracks
...
...
@@ -547,7 +547,7 @@ void BaseTracker<T>::AssociateDetectionsToTrackersEx(const std::vector<std::vect
}
}
if
(
dets_low
.
size
()
>
0
&&
tracks
.
size
()
-
high_matched
.
size
()
>
0
)
if
(
dets_low
.
size
()
>
0
&&
tracks
.
size
()
-
high_matched
.
size
()
>
0
)
//低分检测不能为空且总跟踪目标减高分检测不能为空
{
std
::
vector
<
std
::
vector
<
float
>>
iou_matrix_low
;
// resize IOU matrix based on number of detection and tracks
...
...
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