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

Alvaro Salcedo's profile - activity

2023-04-16 01:06:37 -0500 received badge  Great Question (source)
2021-04-23 13:30:49 -0500 received badge  Notable Question (source)
2021-03-14 05:45:33 -0500 received badge  Notable Question (source)
2021-03-08 06:27:43 -0500 received badge  Famous Question (source)
2021-01-29 13:47:05 -0500 marked best answer how can I edit my own map in gazebo 2.2?

Hi Ros Users:

I have just created a map in gazebo 2.2. i have saved, but i want to edit now. How can i edit? because I cant see any options in gazebo "building editor" to edit my map that i created.

Any ideas?

thanks

2020-05-08 09:58:13 -0500 received badge  Notable Question (source)
2020-05-08 09:58:13 -0500 received badge  Famous Question (source)
2020-05-08 09:58:13 -0500 received badge  Popular Question (source)
2020-01-30 08:38:53 -0500 received badge  Famous Question (source)
2019-03-21 18:21:18 -0500 received badge  Famous Question (source)
2019-01-17 06:10:41 -0500 received badge  Notable Question (source)
2019-01-17 06:10:41 -0500 received badge  Popular Question (source)
2018-06-07 07:27:50 -0500 marked best answer Stage vs Gazebo

Hi Users:

I would like to know the pros and cons between Stage and Gazebo. Is there any document where I can find out?

Thanks!!!

2018-03-17 18:18:13 -0500 marked best answer Calibration pattern chessboard

Hi Ros users:

I am doing a calibration camera and I have to have a calibration pattern in Gazebo. I like to know if there is a .stl calibration pattern chessboard file on the internet to do that. And if there is not, how can I do it?

Thanks a lot.

2018-03-17 18:18:10 -0500 received badge  Nice Question (source)
2018-02-28 10:37:58 -0500 received badge  Famous Question (source)
2018-01-11 20:35:51 -0500 marked best answer publish array velocities in a topic?

Hi Ros users! I have just done a .cpp wich publish velocities in a opic (p3dx/cmd_vel) Here it is:

int main(int argc, char **argv)
{
  ros::init(argc, argv, "lanzando_vel");
  ros::NodeHandle n;
  ros::Publisher vel_pub_ = n.advertise<geometry_msgs::Twist>("p3dx/cmd_vel", 1);

  while (ros::ok())
  {
  geometry_msgs::Twist cmd;
  cmd.linear.x = 0;
  cmd.linear.y = 0;
  cmd.linear.z = 0;

  cmd.angular.x = 0;
  cmd.angular.y = 0;
  cmd.angular.z = 0;
    vel_pub_.publish(cmd);
  }
    return 0;
}

I would like to publish an array velocities, for example:

at 1seg ==> cmd.linear.x=1 at 3 seg==> cmd.linear.x=4 . . .

how can I do that?

Thank you so much!

2018-01-11 20:23:28 -0500 marked best answer How can I put noise to my P3DX model?

Hi Ros Users :

I am trying to put noise to my P3DX model wich is https://github.com/RafBerkvens/ua_ros... Because the model behaviour is unrealistic.

Does Anybody know what I must modify in the code to do that?

Thanks!!!!

In respose to your comment @Javi V.

I modify this part of the code:

 <!-- ground truth -->
<gazebo>
<plugin name="p3d_base_controller" filename="libgazebo_ros_p3d.so">
<alwaysOn>true</alwaysOn>
<updateRate>100.0</updateRate>
<bodyName>base_link</bodyName>
<topicName>${ns}/base_pose_ground_truth</topicName>
<gaussianNoise>0.01</gaussianNoise>
<frameName>map</frameName>
<!-- initialize odometry for fake localization -->
<xyzOffsets>0 0 0</xyzOffsets>
<rpyOffsets>0 0 0</rpyOffsets>
</plugin>
</gazebo>

in Gaussian noise but it does the same... any ideas? Do I have to change something else to make this work ?

2017-04-30 03:11:23 -0500 marked best answer Simple problem with TwistStamped msg

hi Ros users:

I am trying to do an array of velocities. This is my code:

  geometry_msgs::Twist cmd;
  geometry_msgs::TwistStamped tiempo;
  cmd.linear.x = 1; 
  cmd.linear.y = 0;
  cmd.linear.z = 0;

  tiempo.header.stamp=5;
  cmd.angular.x = 0;
  cmd.angular.y = 0;
  cmd.angular.z = 4;
  vel_pub_.publish(cmd);

But when it is compiled i can see these errors on terminal

/home/alcor/catkin_ws/src/lanzar_velocidades/src/arrayvel.cpp:52:3: error: ‘geometry’ has not been declared geometry::TwistStamped tiempo; ^ /home/alcor/catkin_ws/src/lanzar_velocidades/src/arrayvel.cpp:52:26: error: expected ‘;’ before ‘tiempo’
geometry::TwistStamped tiempo; ^ /home/alcor/catkin_ws/src/lanzar_velocidades/src/arrayvel.cpp:57:3: error: ‘tiempo’ was not declared in this scope tiempo.header.stamp=5;
^ make[2]: * [lanzar_velocidades/CMakeFiles/arrayvel_node.dir/src/arrayvel.cpp.o] Error 1 make[1]: * [lanzar_velocidades/CMakeFiles/arrayvel_node.dir/all] Error 2

Any ideas?

Thanks!

2017-03-29 16:43:53 -0500 marked best answer OpenCV in ROS indigo

Hi Ros users:

I have a script where I use OpenCV functions and ROS functions. But I have a problem when I run this script. Mi question is: What version of OpenCV have I to install to work with Ros Indigo?

Thanks a lot!!!!!

2017-03-20 00:45:22 -0500 marked best answer base_pose_ground_truth type?

Hello ros users. I am trying to subscribe to base_pose_ground_truth topic but I can't. My code is this:

nav_msgs::base_pose_ground_truth subs;
 double variable1;
 double variable2;
 void velsubcallback(const nav_msgs::base_pose_ground_truth& msg)
   {

  variable1=msg.twist.twist.linear.x;
    variable2=msg.twist.twist.angular.z;
     lectura_ros.linear=variable1;
     lectura_ros.angular=variable2;
     ROS_INFO("variable %f",lectura_ros.linear);

How can i subscribe on that topic?

Thanks!

2017-03-10 02:59:46 -0500 received badge  Famous Question (source)
2017-02-17 15:25:32 -0500 marked best answer How can I download camera Gazebo

Hi Ros users:

I would like to download the pkg of this camera which Gazebo provides us:

image description

So I would like that when I launch a .launch the camera is in the same place and I would like to be able to access topics (for example "camera/link/camera/image" as you can see below on the pic) in the terminal or in RVIZ. So it is possible to download this camera as pkg? Or to do that in any way?

Thanks!!!

2017-01-17 18:58:43 -0500 received badge  Good Question (source)
2017-01-13 09:05:25 -0500 received badge  Notable Question (source)
2016-11-12 19:11:23 -0500 received badge  Famous Question (source)
2016-10-05 07:00:55 -0500 received badge  Notable Question (source)
2016-10-05 07:00:55 -0500 received badge  Famous Question (source)
2016-08-08 02:02:12 -0500 marked best answer Adding noise to P3DX model

Hi Ros users:

I am trying to add gaussian noise to velocities of P3DX. The model that I am using is from this source https://github.com/RafBerkvens/ua_ros... I have modified this part of code:

  <!-- ground truth -->
    <gazebo>
        <plugin name="p3d_base_controller" filename="libgazebo_ros_p3d.so">
            <alwaysOn>true</alwaysOn>
            <updateRate>100.0</updateRate>
            <bodyName>base_link</bodyName>
            <topicName>${ns}/base_pose_ground_truth</topicName>
             <gaussianNoise>0.01</gaussianNoise>
            <frameName>map</frameName>
            <!-- initialize odometry for fake localization -->
            <xyzOffsets>0 0 0</xyzOffsets>
            <rpyOffsets>0 0 0</rpyOffsets>
    <velocityGaussianNoise>10 10 10</velocityGaussianNoise>
        </plugin>
    </gazebo>

I change the part where it says "gaussiannoise nad velocityGaussianNoise" but it works in the same way.

Does anybody know how i can add gaussian noise to P3DX model??

Thank you so much.

2016-07-28 23:31:16 -0500 received badge  Famous Question (source)
2016-06-28 13:05:29 -0500 received badge  Famous Question (source)
2016-06-26 21:12:12 -0500 received badge  Famous Question (source)
2016-06-10 07:07:01 -0500 received badge  Famous Question (source)
2016-06-08 16:35:31 -0500 received badge  Famous Question (source)
2016-06-06 03:43:04 -0500 received badge  Famous Question (source)
2016-06-03 02:40:11 -0500 commented answer nav2d autonomous exploration

@Sebastian Kasperski @Icehawk101 Hello my friends. I have just edited the post!!! Thanks again,

2016-06-02 07:22:39 -0500 received badge  Famous Question (source)
2016-06-02 07:19:48 -0500 received badge  Famous Question (source)
2016-06-02 05:25:40 -0500 commented answer nav2d autonomous exploration

@Sebastian Kasperski It gives me this error as well: LaserRangeFinder::Validate() - LocalizedRangeScan contains 672 range readings, expected 673

2016-06-02 05:04:54 -0500 commented answer nav2d autonomous exploration

@Sebastian Kasperski I have just eddited with more information!! thanks!!

2016-06-02 04:33:09 -0500 received badge  Notable Question (source)
2016-06-02 04:31:46 -0500 commented answer nav2d autonomous exploration

I have just editted post! @Sebastian Kasperski

2016-06-02 04:31:20 -0500 edited question nav2d autonomous exploration

Every problems before fixed:

EDIT 6: Hi friends!! I have just fixed every problems with your help. So now my robot moves with StartMapping and with StartExplorer, but not really well...

I think that it do good StartMapping but when I do StartExplorer, my robot explores just a few second and it gets stuck in a wall. I think that this problem is for some .yaml parameters.

But I modify a lot of parameters to check if it does a good navigatiion and alwais it gets stuck. Which parameters have I to modify or what I can do???

Thanka lot!

2016-06-01 13:29:47 -0500 received badge  Popular Question (source)