ROS Resources: Documentation | Support | Discussion Forum | Index | Service Status | ros @ Robotics Stack Exchange
Ask Your Question

Albtech's profile - activity

2022-07-07 11:26:37 -0500 received badge  Famous Question (source)
2022-07-07 11:26:37 -0500 received badge  Notable Question (source)
2021-05-17 06:07:40 -0500 received badge  Famous Question (source)
2020-07-18 16:28:47 -0500 received badge  Teacher (source)
2020-04-17 08:52:30 -0500 answered a question Compare autoware PCDs

CloudCompare is the way to go. Just save them as .PCD or any format readable from Cloud Compare and enjoy comparing ;)

2020-04-17 02:45:14 -0500 answered a question undefined reference to `tf::pointEigenToMsg

This seems to be a linker problem. Therefore make sure that you have properly installed the library files or you are doi

2019-09-26 09:23:25 -0500 received badge  Notable Question (source)
2019-09-26 09:23:25 -0500 received badge  Popular Question (source)
2019-02-08 06:40:38 -0500 commented answer Different outcome for the same quaternion between geometry_msgs::Pose and tf::Transform

Thanks a lot.

2019-02-08 06:40:16 -0500 marked best answer Different outcome for the same quaternion between geometry_msgs::Pose and tf::Transform

Here is the code I am using to broadcast a transform and publish the path of the same transform.

global_transform_.frame_id_ = "world";
global_transform_.child_frame_id_ = "base_link";
global_transform_.stamp_ = transform_in->header.stamp;
global_transform_.setRotation(q);
global_transform_.setOrigin(p);

broadcaster_.sendTransform(global_transform_);

geometry_msgs::PoseStamped pose;
pose.pose.position.x = p.x();
pose.pose.position.y = p.y();
pose.pose.position.z = p.z();
pose.pose.orientation.x = q.x();
pose.pose.orientation.y = q.y();
pose.pose.orientation.z = q.z();
pose.pose.orientation.x = q.w();

path_.header.frame_id = "world";
path_.header.stamp = transform_in->header.stamp;
path_.poses.push_back(pose);

path_pub_.publish(path_);

Surprisingly, the outcome of the orientation in RViz is different for the two corresponding frames even though I have used the same quaternion value for both (please see the image attached below).

Any idea what is causing this?

RViz Frames

2019-02-08 06:40:16 -0500 received badge  Scholar (source)
2019-02-08 06:23:09 -0500 asked a question Different outcome for the same quaternion between geometry_msgs::Pose and tf::Transform

Different outcome for the same quaternion between geometry_msgs::Pose and tf::Transform Here is the code I am using to b

2019-02-08 06:08:51 -0500 received badge  Supporter (source)
2019-02-08 06:07:39 -0500 answered a question Which software is specialized in programming for ROS?? i'm beginner

If you mean which IDE is more convenient to program in ROS, I would highly recommend CLion.

2019-01-09 10:52:32 -0500 received badge  Famous Question (source)
2019-01-09 10:52:32 -0500 received badge  Notable Question (source)
2019-01-09 10:52:32 -0500 received badge  Popular Question (source)
2018-12-26 20:41:03 -0500 received badge  Popular Question (source)
2018-05-24 03:40:11 -0500 received badge  Famous Question (source)
2018-05-24 03:40:11 -0500 received badge  Notable Question (source)
2017-09-14 15:00:24 -0500 received badge  Popular Question (source)
2017-09-05 04:02:02 -0500 commented question No matching constructor for rosbag::View

I am following line by line instructions from here http://wiki.ros.org/rosbag/Code%20API. myBag is rosbag::Bag type, it

2017-09-04 08:43:33 -0500 asked a question No matching constructor for rosbag::View

No matching constructor for rosbag::View Hi guys, I am trying to follow the rosbag API guideline to create a rosbag vie

2017-04-26 04:07:38 -0500 received badge  Enthusiast
2017-04-17 05:41:55 -0500 asked a question GDB debug - not listing the source code

Hi guys,

I do run the binaries of my ros node using: $ gdb node from within the binary folder of my package and I do set accordingly breakpoints but when the execution reaches the breakpoint and I want to list the code via List function, it shows me this:

(gdb) l

1 <built-in>: No such file or directory.

Has anyone faced this problem before? Could you please give me a hint what I may be doing wrong?

Thank you!

2017-02-20 07:10:13 -0500 asked a question Runtime Error with Image Transport in Eclipse IDE

Hi guys,

I have configured the Eclipse as my IDE and I am having no problems during compile time for my ROS packages. Once I run or enter the Debug mode, if there is an image_transport object use, it will immediately cause runtime error showing this error message:

[rospack] Error: package 'image_transport' not found terminate called after throwing an instance of 'pluginlib::ClassLoaderException' what(): Unable to find package: image_transport

When I try to run the same node outside the Eclipse environment I have no such problems. Do you have any idea what might be causing this?

Thank you!

2013-07-21 03:08:05 -0500 received badge  Famous Question (source)
2013-07-09 02:06:02 -0500 received badge  Notable Question (source)
2013-06-30 16:58:11 -0500 received badge  Popular Question (source)
2013-06-28 03:10:18 -0500 commented answer Complete ROS uninstallation?

Still these packages remained unaffected. Anyway thank you for effort!

2013-06-27 23:26:14 -0500 asked a question Complete ROS uninstallation?

Hi guys,

Even though i have tried to uninstall ROS using sudo apt-get remove ros-groovy-*, still there are some remaining packages like: ros-groovy-bfl, ros-groovy-opencv2 ... etc. Did anybody know how to completely remove them because i want to try a fresh installation of ROS and i dont want to have something from the previous installation.

Thank you in advance!