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
f046d152
Commit
f046d152
authored
Dec 09, 2021
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交const
parent
8afd9750
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
with
3 additions
and
3 deletions
+3
-3
BaseTrack.h
BaseTracker/BaseTrack.h
+1
-1
Track3D.cpp
BaseTracker/Track3D.cpp
+1
-1
Track3D.h
BaseTracker/Track3D.h
+1
-1
No files found.
BaseTracker/BaseTrack.h
View file @
f046d152
...
...
@@ -22,7 +22,7 @@ public:
virtual
float
GetNIS
()
const
;
virtual
bool
IsLost
();
virtual
float
CalculateIou
(
std
::
vector
<
float
>&
data
)
=
0
;
virtual
float
CalculateIou
(
const
std
::
vector
<
float
>&
data
)
=
0
;
int
coast_cycles_
=
0
,
hit_streak_
=
0
;
...
...
BaseTracker/Track3D.cpp
View file @
f046d152
...
...
@@ -59,7 +59,7 @@ Track3D::Track3D():BaseTrack(10, 7)
kf_
=
kf
;
}
float
Track3D
::
CalculateIou
(
std
::
vector
<
float
>&
data
)
float
Track3D
::
CalculateIou
(
const
std
::
vector
<
float
>&
data
)
{
return
0.0
f
;
...
...
BaseTracker/Track3D.h
View file @
f046d152
...
...
@@ -14,7 +14,7 @@ public:
Track3D
();
~
Track3D
()
{}
virtual
float
CalculateIou
(
std
::
vector
<
float
>&
data
);
virtual
float
CalculateIou
(
const
std
::
vector
<
float
>&
data
);
trackOjbPtr
m_obj
=
nullptr
;
...
...
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