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
aa0b86aa
Commit
aa0b86aa
authored
Jan 12, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交更新
parent
cb3dfb9f
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
3 additions
and
3 deletions
+3
-3
TrackingRosEx.cpp
TrackingRosEx.cpp
+3
-3
No files found.
TrackingRosEx.cpp
View file @
aa0b86aa
...
...
@@ -151,10 +151,10 @@ void CalculateGuassPos(jfx_common_msgs::det_tracking& obj,std::vector<std::vecto
void
get_camera_tolidar_loc
(
float
u
,
float
v
,
float
&
x
,
float
&
y
)
{
float
camera
[
1
][
5
]
=
{
-
3.0546708753769027e+00
,
2.8235384675530199e+01
,
1.5164164709152357e-02
,
-
1.4151304833353489e-04
,
-
5.3523523223247594e+02
};
//摄像机内参数矩阵K
cv
::
Mat
cameraMatrix
=
cv
::
Mat
(
1
,
5
,
CV_32F
C1
,
camera
);
//内参数K Mat类型变量
float
camera
[
5
]
=
{
-
3.0546708753769027e+00
,
2.8235384675530199e+01
,
1.5164164709152357e-02
,
-
1.4151304833353489e-04
,
-
5.3523523223247594e+02
};
//摄像机内参数矩阵K
cv
::
Mat
cameraMatrix
=
cv
::
Mat
(
1
,
5
,
CV_32F
,
camera
);
//内参数K Mat类型变量
float
dist
[
3
][
3
]
=
{
1.1775635693883434e+04
,
0.0
,
9.6852512890598337e+02
,
0.0
,
4.3425255703581051e+03
,
5.4191193116052807e+02
,
0.0
,
0.0
,
1.0
};
cv
::
Mat
distCoeffs
=
cv
::
Mat
(
3
,
3
,
CV_32F
C1
,
dist
);
cv
::
Mat
distCoeffs
=
cv
::
Mat
(
3
,
3
,
CV_32F
,
dist
);
std
::
vector
<
cv
::
Point2f
>
inputDistortedPoints
;
std
::
vector
<
cv
::
Point2f
>
outputUndistortedPoints
;
...
...
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