small fixes
This commit is contained in:
parent
7694fc1825
commit
aa0b7826fe
|
@ -47,6 +47,7 @@ OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
|
||||||
#undef private
|
#undef private
|
||||||
|
|
||||||
#include <geometry_msgs/PointStamped.h>
|
#include <geometry_msgs/PointStamped.h>
|
||||||
|
#include <geometry_msgs/PoseStamped.h>
|
||||||
#include <geometry_msgs/TransformStamped.h>
|
#include <geometry_msgs/TransformStamped.h>
|
||||||
#include <sensor_msgs/Image.h>
|
#include <sensor_msgs/Image.h>
|
||||||
#include <sensor_msgs/Imu.h>
|
#include <sensor_msgs/Imu.h>
|
||||||
|
@ -207,7 +208,8 @@ class RosbagIO : public DatasetIoInterface {
|
||||||
} else if (info->datatype == std::string("sensor_msgs/Imu")) {
|
} else if (info->datatype == std::string("sensor_msgs/Imu")) {
|
||||||
imu_topic = info->topic;
|
imu_topic = info->topic;
|
||||||
} else if (info->datatype ==
|
} else if (info->datatype ==
|
||||||
std::string("geometry_msgs/TransformStamped")) {
|
std::string("geometry_msgs/TransformStamped") ||
|
||||||
|
info->datatype == std::string("geometry_msgs/PoseStamped")) {
|
||||||
mocap_topic = info->topic;
|
mocap_topic = info->topic;
|
||||||
} else if (info->datatype == std::string("geometry_msgs/PointStamped")) {
|
} else if (info->datatype == std::string("geometry_msgs/PointStamped")) {
|
||||||
point_topic = info->topic;
|
point_topic = info->topic;
|
||||||
|
@ -288,6 +290,26 @@ class RosbagIO : public DatasetIoInterface {
|
||||||
if (mocap_topic == topic) {
|
if (mocap_topic == topic) {
|
||||||
geometry_msgs::TransformStampedConstPtr mocap_msg =
|
geometry_msgs::TransformStampedConstPtr mocap_msg =
|
||||||
m.instantiate<geometry_msgs::TransformStamped>();
|
m.instantiate<geometry_msgs::TransformStamped>();
|
||||||
|
|
||||||
|
// Try different message type if instantiate did not work
|
||||||
|
if (!mocap_msg) {
|
||||||
|
geometry_msgs::PoseStampedConstPtr mocap_pose_msg =
|
||||||
|
m.instantiate<geometry_msgs::PoseStamped>();
|
||||||
|
|
||||||
|
geometry_msgs::TransformStampedPtr mocap_new_msg(
|
||||||
|
new geometry_msgs::TransformStamped);
|
||||||
|
mocap_new_msg->header = mocap_pose_msg->header;
|
||||||
|
mocap_new_msg->transform.rotation = mocap_pose_msg->pose.orientation;
|
||||||
|
mocap_new_msg->transform.translation.x =
|
||||||
|
mocap_pose_msg->pose.position.x;
|
||||||
|
mocap_new_msg->transform.translation.y =
|
||||||
|
mocap_pose_msg->pose.position.y;
|
||||||
|
mocap_new_msg->transform.translation.z =
|
||||||
|
mocap_pose_msg->pose.position.z;
|
||||||
|
|
||||||
|
mocap_msg = mocap_new_msg;
|
||||||
|
}
|
||||||
|
|
||||||
int64_t time = mocap_msg->header.stamp.toNSec();
|
int64_t time = mocap_msg->header.stamp.toNSec();
|
||||||
|
|
||||||
mocap_msgs.push_back(mocap_msg);
|
mocap_msgs.push_back(mocap_msg);
|
||||||
|
@ -299,6 +321,7 @@ class RosbagIO : public DatasetIoInterface {
|
||||||
if (point_topic == topic) {
|
if (point_topic == topic) {
|
||||||
geometry_msgs::PointStampedConstPtr mocap_msg =
|
geometry_msgs::PointStampedConstPtr mocap_msg =
|
||||||
m.instantiate<geometry_msgs::PointStamped>();
|
m.instantiate<geometry_msgs::PointStamped>();
|
||||||
|
|
||||||
int64_t time = mocap_msg->header.stamp.toNSec();
|
int64_t time = mocap_msg->header.stamp.toNSec();
|
||||||
|
|
||||||
point_msgs.push_back(mocap_msg);
|
point_msgs.push_back(mocap_msg);
|
||||||
|
|
|
@ -568,9 +568,11 @@ void draw_scene() {
|
||||||
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
glBlendFunc(GL_SRC_ALPHA, GL_ONE_MINUS_SRC_ALPHA);
|
||||||
|
|
||||||
glColor3ubv(cam_color);
|
glColor3ubv(cam_color);
|
||||||
|
if (!vio_t_w_i.empty()) {
|
||||||
Eigen::vector<Eigen::Vector3d> sub_gt(vio_t_w_i.begin(),
|
Eigen::vector<Eigen::Vector3d> sub_gt(vio_t_w_i.begin(),
|
||||||
vio_t_w_i.begin() + show_frame);
|
vio_t_w_i.begin() + show_frame);
|
||||||
pangolin::glDrawLineStrip(sub_gt);
|
pangolin::glDrawLineStrip(sub_gt);
|
||||||
|
}
|
||||||
|
|
||||||
glColor3ubv(gt_color);
|
glColor3ubv(gt_color);
|
||||||
if (show_gt) pangolin::glDrawLineStrip(gt_t_w_i);
|
if (show_gt) pangolin::glDrawLineStrip(gt_t_w_i);
|
||||||
|
|
Loading…
Reference in New Issue