aux/tracking: Port PS Move tracker

This commit is contained in:
pblack 2019-09-26 23:33:57 +12:00 committed by Jakob Bornecrantz
parent 3e27720083
commit 5d616cd077

View file

@ -3,12 +3,14 @@
/*!
* @file
* @brief PS Move tracker code.
* @author Pete Black <pblack@collabora.com>
* @author Jakob Bornecrantz <jakob@collabora.com>
*/
#include "xrt/xrt_tracking.h"
#include "tracking/t_tracking.h"
#include "tracking/t_calibration_opencv.h"
#include "util/u_misc.h"
#include "util/u_debug.h"
@ -45,6 +47,24 @@ public:
struct xrt_vec3 pos = {};
struct xrt_quat rot = {};
} fusion;
cv::Mat l_undistort_map_x;
cv::Mat l_undistort_map_y;
cv::Mat l_rectify_map_x;
cv::Mat l_rectify_map_y;
cv::Mat r_undistort_map_x;
cv::Mat r_undistort_map_y;
cv::Mat r_rectify_map_x;
cv::Mat r_rectify_map_y;
cv::Mat disparity_to_depth;
bool calibrated;
std::vector<cv::KeyPoint> l_keypoints;
std::vector<cv::KeyPoint> r_keypoints;
cv::Ptr<cv::SimpleBlobDetector> sbd;
xrt_vec3 tracked_object_position;
};
static void
@ -55,9 +75,145 @@ procces(TrackerPSMV &t, struct xrt_frame *xf)
return;
}
if (!t.calibrated) {
if (calibration_get_stereo(
"PS4_EYE", xf->width, xf->height, false,
&t.l_undistort_map_x, &t.l_undistort_map_y,
&t.l_rectify_map_x, &t.l_rectify_map_y,
&t.r_undistort_map_x, &t.r_undistort_map_y,
&t.r_rectify_map_x, &t.r_rectify_map_y,
&t.disparity_to_depth)) {
printf("loaded calibration for camera!\n");
t.calibrated = true;
}
}
t.l_keypoints.clear();
t.r_keypoints.clear();
// TODO: we assume L8 format here, this may be a bad assumption
cv::Mat l_grey(xf->height, xf->width / 2, CV_8UC1, xf->data,
xf->stride);
cv::Mat r_grey(xf->height, xf->width / 2, CV_8UC1,
xf->data + xf->width / 2, xf->stride);
cv::Mat l_frame_undist;
cv::Mat r_frame_undist;
// undistort the whole image
cv::remap(l_grey, l_frame_undist, t.l_undistort_map_x,
t.l_undistort_map_y, cv::INTER_LINEAR, cv::BORDER_CONSTANT,
cv::Scalar(0, 0, 0));
cv::remap(r_grey, r_frame_undist, t.r_undistort_map_x,
t.r_undistort_map_y, cv::INTER_LINEAR, cv::BORDER_CONSTANT,
cv::Scalar(0, 0, 0));
// rectify the whole image
cv::remap(l_frame_undist, l_grey, t.l_rectify_map_x, t.l_rectify_map_y,
cv::INTER_LINEAR, cv::BORDER_CONSTANT, cv::Scalar(0, 0, 0));
cv::remap(r_frame_undist, r_grey, t.r_rectify_map_x, t.r_rectify_map_y,
cv::INTER_LINEAR, cv::BORDER_CONSTANT, cv::Scalar(0, 0, 0));
cv::threshold(l_grey, l_grey, 32.0, 255.0, 0);
cv::threshold(r_grey, r_grey, 32.0, 255.0, 0);
// tracker_measurement_t m = {};
// do blob detection with our masks
// TODO: re-enable masks
t.sbd->detect(l_grey, t.l_keypoints); //,internal->l_mask_gray);
t.sbd->detect(r_grey, t.r_keypoints); //,internal->r_mask_gray);
// do some basic matching to come up with likely disparity-pairs
std::vector<cv::KeyPoint> l_blobs, r_blobs;
for (uint32_t i = 0; i < t.l_keypoints.size(); i++) {
cv::KeyPoint l_blob = t.l_keypoints[i];
int l_index = -1;
int r_index = -1;
for (uint32_t j = 0; j < t.r_keypoints.size(); j++) {
float lowest_dist = 128;
cv::KeyPoint r_blob = t.r_keypoints[j];
// find closest point on same-ish scanline
if ((l_blob.pt.y < r_blob.pt.y + 3) &&
(l_blob.pt.y > r_blob.pt.y - 3) &&
((r_blob.pt.x - l_blob.pt.x) < lowest_dist)) {
lowest_dist = r_blob.pt.x - l_blob.pt.x;
r_index = j;
l_index = i;
}
}
if (l_index > -1 && r_index > -1) {
l_blobs.push_back(t.l_keypoints.at(l_index));
r_blobs.push_back(t.r_keypoints.at(r_index));
}
}
// convert our 2d point + disparities into 3d points.
std::vector<cv::Point3f> world_points;
if (l_blobs.size() > 0) {
for (uint32_t i = 0; i < l_blobs.size(); i++) {
float disp = r_blobs[i].pt.x - l_blobs[i].pt.x;
cv::Vec4d xydw(l_blobs[i].pt.x, l_blobs[i].pt.y, disp,
1.0f);
// Transform
cv::Vec4d h_world =
(cv::Matx44d)t.disparity_to_depth * xydw;
// Divide by scale to get 3D vector from homogeneous
// coordinate. invert x while we are here.
world_points.push_back(cv::Point3f(
-h_world[0] / h_world[3], h_world[1] / h_world[3],
h_world[2] / h_world[3]));
}
}
int tracked_index = -1;
float lowest_dist = 65535.0f;
cv::Point3f last_point(t.tracked_object_position.x,
t.tracked_object_position.y,
t.tracked_object_position.z);
for (uint32_t i = 0; i < world_points.size(); i++) {
cv::Point3f world_point = world_points[i];
float dist = cv_dist3d_point(world_point, last_point);
if (dist < lowest_dist) {
tracked_index = i;
lowest_dist = dist;
}
}
if (tracked_index != -1) {
cv::Point3f world_point = world_points[tracked_index];
/*
//apply our room setup transform
Eigen::Vector3f p = Eigen::Map<Eigen::Vector3f>(&world_point.x);
Eigen::Vector4f pt;
pt.x() = p.x();
pt.y() = p.y();
pt.z() = p.z();
pt.w() = 1.0f;
//this is a glm mat4 written out 'flat'
Eigen::Matrix4f mat =
Eigen::Map<Eigen::Matrix<float,4,4>>(internal->rs.origin_transform.v);
pt = mat * pt;
m.pose.position.x = pt.x();
m.pose.position.y = pt.y();
m.pose.position.z = pt.z();
*/
// update internal state
t.tracked_object_position.x = world_point.x;
t.tracked_object_position.y = world_point.y;
t.tracked_object_position.z = world_point.z;
}
xrt_frame_reference(&xf, NULL);
}
static void
run(TrackerPSMV &t)
{
@ -108,7 +264,8 @@ get_pose(TrackerPSMV &t,
return;
}
out_relation->pose.position = t.fusion.pos;
// out_relation->pose.position = t.fusion.pos;
out_relation->pose.position = t.tracked_object_position;
out_relation->pose.orientation = t.fusion.rot;
//! @todo assuming that orientation is actually currently tracked.
@ -154,7 +311,6 @@ frame(TrackerPSMV &t, struct xrt_frame *xf)
}
xrt_frame_reference(&t.frame, xf);
// Wake up the thread.
os_thread_helper_signal_locked(&t.oth);
@ -302,6 +458,23 @@ t_psmv_create(struct xrt_frame_context *xfctx,
break;
}
// clang-format off
cv::SimpleBlobDetector::Params blob_params;
blob_params.filterByArea = false;
blob_params.filterByConvexity = false;
blob_params.filterByInertia = false;
blob_params.filterByColor = true;
blob_params.blobColor = 255; // 0 or 255 - color comes from binarized image?
blob_params.minArea = 1;
blob_params.maxArea = 1000;
blob_params.maxThreshold = 51; // using a wide threshold span slows things down bigtime
blob_params.minThreshold = 50;
blob_params.thresholdStep = 1;
blob_params.minDistBetweenBlobs = 5;
blob_params.minRepeatability = 1; // need this to avoid error?
// clang-format on
t.sbd = cv::SimpleBlobDetector::create(blob_params);
xrt_frame_context_add(xfctx, &t.node);
*out_sink = &t.sink;