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
4a86dc9c
Commit
4a86dc9c
authored
Sep 27, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
添加utm变换需要的参数配置
parent
ff6ce68c
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
6 additions
and
0 deletions
+6
-0
TrackingRos.cpp
TrackingRos.cpp
+6
-0
No files found.
TrackingRos.cpp
View file @
4a86dc9c
...
...
@@ -314,6 +314,12 @@ void TrackingRos::Init(ros::NodeHandle& nh)
m_kitti2origin
=
config
[
"KITTI2ORIGIN"
].
as
<
std
::
vector
<
std
::
vector
<
double
>>>
();
else
SDK_LOG
(
SDK_INFO
,
"can not load KITTI2ORIGIN from yaml"
);
if
(
config
[
"UTM_STATION"
])
m_UTM_station
=
config
[
"UTM_STATION"
].
as
<
std
::
vector
<
double
>>
();
if
(
config
[
"WGS84_STATION"
])
m_wgs84_station
=
config
[
"WGS84_STATION"
].
as
<
std
::
vector
<
double
>>
();
if
(
config
[
"TRANS2STATION"
])
m_trans2station
=
config
[
"TRANS2STATION"
].
as
<
std
::
vector
<
std
::
vector
<
double
>>>
();
SDK_LOG
(
SDK_INFO
,
"trans = [%s]"
,
GetMatrixStr
(
m_trans
,
4
,
4
).
c_str
());
SDK_LOG
(
SDK_INFO
,
"kitti2origin = [%s]"
,
GetMatrixStr
(
m_kitti2origin
,
4
,
4
).
c_str
());
...
...
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