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
edbdf8e7
Commit
edbdf8e7
authored
Feb 18, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
修改编译错误
parent
8a31e3e8
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
7 additions
and
6 deletions
+7
-6
TrackingRosEx.cpp
TrackingRosEx.cpp
+6
-5
TimeQueueObj.cpp
common/TimeQueueObj.cpp
+1
-1
No files found.
TrackingRosEx.cpp
View file @
edbdf8e7
...
...
@@ -236,6 +236,12 @@ void get_camera_left_tolidar_loc(float u, float v, float& x, float& y)
y
=
sry
+
2
;
}
inline
int
_GET_VALID_VALUE
(
unsigned
char
position
,
int
bits
)
{
unsigned
int
the_mask
=
(((
unsigned
int
)
1
)
<<
position
);
return
(
the_mask
&=
bits
)
>>
position
;
}
TrackingRos
::~
TrackingRos
()
{
if
(
m_isTrackingRun
==
true
)
...
...
@@ -676,11 +682,6 @@ void TrackingRos::TrackingCallBackFunc(const jfx_common_msgs::det_tracking_array
//m_pubCloud.publish(msg->cloud);
}
inline
int
_GET_VALID_VALUE
(
unsigned
char
position
,
int
bits
)
{
unsigned
int
the_mask
=
(((
unsigned
int
)
1
)
<<
position
);
return
(
the_mask
&=
bits
)
>>
position
;
}
void
TrackingRos
::
TrackingCameraCallBackFunc
(
const
jfx_common_msgs
::
InferResesConstPtr
&
msg
)
{
...
...
common/TimeQueueObj.cpp
View file @
edbdf8e7
...
...
@@ -115,7 +115,7 @@ int TimeQueueObj::GetQueueData(std::vector<TimeQueueDataPtr>& outs)
int
isFinish
=
0
;
if
(
obj
==
pos
)
isFinish
=
1
;
if
((
*
iter
)
->
dataType
!=
m_baseEnum
)
if
((
*
obj
)
->
dataType
!=
m_baseEnum
)
{
if
(
m_enumCount
[
static_cast
<
int
>
((
*
iter
)
->
dataType
)]
==
1
)
obj
++
;
...
...
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