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

antoineniotna's profile - activity

2021-06-22 15:32:14 -0500 received badge  Famous Question (source)
2021-03-23 11:05:22 -0500 received badge  Famous Question (source)
2020-11-04 15:35:00 -0500 received badge  Student (source)
2020-10-27 03:26:30 -0500 received badge  Notable Question (source)
2020-05-13 13:54:54 -0500 received badge  Notable Question (source)
2020-05-13 13:54:54 -0500 received badge  Popular Question (source)
2020-03-31 07:52:49 -0500 received badge  Famous Question (source)
2020-03-31 07:52:49 -0500 received badge  Notable Question (source)
2019-10-02 18:34:29 -0500 received badge  Popular Question (source)
2019-09-07 14:59:08 -0500 received badge  Famous Question (source)
2019-09-07 14:59:08 -0500 received badge  Notable Question (source)
2019-06-27 02:23:32 -0500 received badge  Famous Question (source)
2019-05-13 08:49:09 -0500 commented question can't locate node in package

I just had the same problem, but for me the problem was in the launch file. I created my node with catkin command, and t

2019-05-07 03:35:40 -0500 commented answer Path to resource files in C++ node

Thanks for the help!

2019-05-07 03:35:40 -0500 received badge  Commentator
2019-05-06 05:02:49 -0500 commented answer Unable to open rosbag files in C++

Did you managed to use the relative path ? I have exactly the same problem, absolute path is working fine but the relati

2019-05-05 06:27:55 -0500 received badge  Famous Question (source)
2019-03-01 16:29:38 -0500 marked best answer How can I save the RVIZ visualization to an image file

Hello,

I am publishing data trough different publisher, mainly with visualization_msgs::Marker and nav_msgs::GridCells objects. I get a visualization in my RVIZ window and what I want to do is to save this visualization into an image of the size I want.

Do you know if there is a plug-in who can do that ? Or if there is some other way to do that ?

I don't want to do a screen shot because i would like the size of my image to be bigger than the actual definition of my screen.

2019-02-27 08:51:57 -0500 commented answer Can TransformListener get the transformation of an indirect child

Simple and clear! Thank you

2019-02-27 08:51:39 -0500 marked best answer Can TransformListener get the transformation of an indirect child

I am using a tf::TransformListener listener to get the transformation between two frame in my c++ program. My tf Tree is as follow Parent -> Child1 ->Child2 . I am using the following line to get the transformation between Parent to Child1:

listener.lookupTransform(frame_parent, frame_child1, ros::Time(0), transform);

When I am displaying the /tf topic with rostopic echo /tf, I can see a transformation for Parent -> Child1 and a transformation from Child1 -> Child2.

My question is, can I get the transformation from Parent -> Child2 ? Can the TransformListener return a combination of transformations ? I wrote something like this:

listener.lookupTransform(frame_parent, frame_child2, ros::Time(0), transform);
2019-02-27 08:51:39 -0500 received badge  Scholar (source)
2019-02-27 08:20:14 -0500 asked a question Can TransformListener get the transformation of an indirect child

Can TransformListener get the transformation of an indirect child I am using a tf::TransformListener listener to get the

2019-01-12 21:06:46 -0500 received badge  Notable Question (source)
2019-01-11 12:42:07 -0500 marked best answer What does intensity mean intensity exactly ?

Hello,

I am getting a from a rosbag a point cloud which as been register with a velodyne. I'm visualizing it with a PointCloud2 display type.

I have some artifacts on the result so I'm trying to understand exactly what is appending, but i don't understand what Intensity mean in the "Channel Name" field or in the "Color Transformer" field.

Does someone can help me understand what the intensity represent ? Is it the number of point at the same place ?

I looked in the documentation i founded but whiteout any success... http://wiki.ros.org/rviz/DisplayTypes... http://wiki.ros.org/rviz/DisplayTypes... http://wiki.ros.org/rviz/DisplayTypes...

2018-12-28 07:26:42 -0500 received badge  Popular Question (source)
2018-12-27 07:54:04 -0500 asked a question pcl_ros can't find package

pcl_ros can't find package When I am running the CMAKE of my project, this error appear. I am working on the lunar dist

2018-12-18 09:42:23 -0500 commented question Same parameters for different nodes

It seems to work! I still have some problems but I think it is coming from the loading of files which now have a bad pat

2018-12-18 09:21:37 -0500 edited question Same parameters for different nodes

Same parameters for different nodes I am currently having several nodes running. Each node has his own server parameter,

2018-12-18 09:20:41 -0500 received badge  Editor (source)
2018-12-18 09:20:41 -0500 edited question Same parameters for different nodes

Same parameters for different nodes I am currently having several nodes running. Each node has his own server parameter,

2018-12-18 09:19:40 -0500 commented question Same parameters for different nodes

Indeed I am, I will try then. Thanks

2018-12-18 09:07:47 -0500 received badge  Notable Question (source)
2018-12-18 09:07:47 -0500 received badge  Popular Question (source)
2018-12-18 09:07:45 -0500 received badge  Famous Question (source)
2018-12-18 08:59:15 -0500 asked a question Same parameters for different nodes

Same parameters for different nodes I am currently having several nodes running. Each node has his own server parameter,

2018-12-18 06:04:10 -0500 edited answer rqt_console only shows one msg

In my case I replace the std::cout of my program with ROS_INFO_STREAM, and I experienced the same problem as you, only t

2018-12-18 06:03:26 -0500 answered a question rqt_console only shows one msg

In my case I replace the std::cout of my program with ROS_INFO_STREAM, and I experience the same problem as you, only th

2018-12-14 08:25:23 -0500 commented question rqt_console only shows one msg

I have exactly the same problem, did you find any answer ?

2018-12-14 08:25:01 -0500 answered a question rqt_console only shows one msg

I have exactly the same problem, did you find any answer ?

2018-11-08 02:31:49 -0500 received badge  Famous Question (source)
2018-10-15 11:43:19 -0500 received badge  Popular Question (source)
2018-10-12 11:20:13 -0500 asked a question Child rotating around parent axes instead of his own

Child rotating around parent axes instead of his own So, I have a C ++ project which is simulating a car. My program is

2018-10-02 04:26:11 -0500 commented answer Quaternion to Euler angle convention in TF

Perfect! Thank you so much!

2018-10-01 09:53:00 -0500 received badge  Popular Question (source)
2018-10-01 09:50:52 -0500 received badge  Notable Question (source)