-
Notifications
You must be signed in to change notification settings - Fork 94
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
replace pose estimation method with options "pnp" and "homography"
- Loading branch information
1 parent
fbfbb71
commit a38bc4a
Showing
4 changed files
with
116 additions
and
44 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,86 @@ | ||
#include "pose_estimation.hpp" | ||
#include <Eigen/Dense> | ||
#include <apriltag/apriltag_pose.h> | ||
#include <apriltag/common/homography.h> | ||
#include <opencv2/calib3d.hpp> | ||
#include <opencv2/core/quaternion.hpp> | ||
|
||
|
||
geometry_msgs::msg::Transform tf_from_apriltag_pose(const apriltag_pose_t& pose) | ||
{ | ||
const Eigen::Quaterniond q(Eigen::Map<const Eigen::Matrix<double, 3, 3, Eigen::RowMajor>>(pose.R->data)); | ||
|
||
geometry_msgs::msg::Transform t; | ||
|
||
t.translation.x = pose.t->data[0]; | ||
t.translation.y = pose.t->data[1]; | ||
t.translation.z = pose.t->data[2]; | ||
t.rotation.w = q.w(); | ||
t.rotation.x = q.x(); | ||
t.rotation.y = q.y(); | ||
t.rotation.z = q.z(); | ||
|
||
return t; | ||
} | ||
|
||
geometry_msgs::msg::Transform tf_from_cv(const cv::Mat_<double>& tvec, const cv::Mat_<double>& rvec) | ||
{ | ||
const cv::Quat<double> q = cv::Quat<double>::createFromRvec(rvec); | ||
|
||
geometry_msgs::msg::Transform t; | ||
|
||
t.translation.x = tvec.at<double>(0); | ||
t.translation.y = tvec.at<double>(1); | ||
t.translation.z = tvec.at<double>(2); | ||
t.rotation.w = q.w; | ||
t.rotation.x = q.x; | ||
t.rotation.y = q.y; | ||
t.rotation.z = q.z; | ||
|
||
return t; | ||
} | ||
|
||
geometry_msgs::msg::Transform | ||
homography(apriltag_detection_t* const detection, const std::array<double, 4>& intr, double tagsize) | ||
{ | ||
apriltag_detection_info_t info = {detection, tagsize, intr[0], intr[1], intr[2], intr[3]}; | ||
|
||
apriltag_pose_t pose; | ||
estimate_pose_for_tag_homography(&info, &pose); | ||
|
||
return tf_from_apriltag_pose(pose); | ||
} | ||
|
||
geometry_msgs::msg::Transform | ||
pnp(apriltag_detection_t* const detection, const std::array<double, 4>& intr, double tagsize) | ||
{ | ||
const std::vector<cv::Point3d> objectPoints{ | ||
{-tagsize / 2, -tagsize / 2, 0}, | ||
{+tagsize / 2, -tagsize / 2, 0}, | ||
{+tagsize / 2, +tagsize / 2, 0}, | ||
{-tagsize / 2, +tagsize / 2, 0}, | ||
}; | ||
|
||
const std::vector<cv::Point2d> imagePoints{ | ||
{detection->p[0][0], detection->p[0][1]}, | ||
{detection->p[1][0], detection->p[1][1]}, | ||
{detection->p[2][0], detection->p[2][1]}, | ||
{detection->p[3][0], detection->p[3][1]}, | ||
}; | ||
|
||
cv::Matx33d cameraMatrix; | ||
cameraMatrix(0, 0) = intr[0];// fx | ||
cameraMatrix(1, 1) = intr[1];// fy | ||
cameraMatrix(0, 2) = intr[2];// cx | ||
cameraMatrix(1, 2) = intr[3];// cy | ||
|
||
cv::Mat rvec, tvec; | ||
cv::solvePnP(objectPoints, imagePoints, cameraMatrix, {}, rvec, tvec); | ||
|
||
return tf_from_cv(tvec, rvec); | ||
} | ||
|
||
const std::unordered_map<std::string, pose_estimation_f> pose_estimation_methods{ | ||
{"homography", homography}, | ||
{"pnp", pnp}, | ||
}; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,10 @@ | ||
#pragma once | ||
|
||
#include <apriltag/apriltag.h> | ||
#include <geometry_msgs/msg/transform_stamped.hpp> | ||
#include <unordered_map> | ||
|
||
|
||
typedef std::function<geometry_msgs::msg::Transform(apriltag_detection_t* const, const std::array<double, 4>&, const double&)> pose_estimation_f; | ||
|
||
extern const std::unordered_map<std::string, pose_estimation_f> pose_estimation_methods; |