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
7d1a09fc
Commit
7d1a09fc
authored
Jan 12, 2022
by
oscar
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
提交opencv函数
parent
0c95c3f6
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
21 additions
and
0 deletions
+21
-0
TrackingRosEx.cpp
TrackingRosEx.cpp
+21
-0
No files found.
TrackingRosEx.cpp
View file @
7d1a09fc
...
...
@@ -5,6 +5,7 @@
#include "LogBase.h"
#include <yaml-cpp/yaml.h>
#include "matrix.h"
#include <opencv2/opencv.hpp>
#include <eigen3/Eigen/Dense>
#ifdef _USING_NSIGHT_
#include <nvToolsExt.h>
...
...
@@ -148,6 +149,20 @@ 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_32FC1
,
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
=
cvMat
(
3
,
3
,
CV_32FC1
,
camera
);
std
::
vector
<
cv
::
Point2f
>
inputDistortedPoints
;
std
::
vector
<
cv
::
Point2f
>
outputUndistortedPoints
;
inputDistortedPoints
.
push_back
(
cv
::
Point2f
(
u
,
v
));
cv
::
undistortPoints
(
inputDistortedPoints
,
outputUndistortedPoints
,
cameraMatrix
,
distCoeffs
);
}
TrackingRos
::~
TrackingRos
()
{
if
(
m_isTrackingRun
==
true
)
...
...
@@ -264,6 +279,10 @@ void TrackingRos::Init(ros::NodeHandle& nh)
tests
.
push_back
(
point2d
(
-
1
,
1
));
angle
=
correct_angle
(
tests
);
SDK_LOG
(
SDK_INFO
,
"test4 correct_angle = %f"
,
angle
);
float
x
,
y
;
get_camera_tolidar_loc
(
200
,
200
,
x
,
y
);
}
void
TrackingRos
::
TrackingCallBackFunc
(
const
jfx_common_msgs
::
det_tracking_arrayConstPtr
&
msg
)
//接受ros发过来的消息
...
...
@@ -297,6 +316,8 @@ void TrackingRos::TrackingCallBackFunc(const jfx_common_msgs::det_tracking_array
m_pubCloud
.
publish
(
msg
->
cloud
);
}
void
TrackingRos
::
TrackingCameraCallBackFunc
(
const
jfx_common_msgs
::
InferResesConstPtr
&
msg
)
{
static
int
countC
=
0
;
...
...
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