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

ane_fernandez's profile - activity

2023-05-08 03:27:46 -0500 received badge  Famous Question (source)
2015-03-03 02:04:32 -0500 received badge  Famous Question (source)
2013-11-10 07:34:11 -0500 received badge  Famous Question (source)
2013-10-02 04:10:28 -0500 commented question problem creating a new package with catkin_create_pkg

I have deleted __init__.pyc file and reinstalled the python-catkin-pkg and the templates aren't found yet. The content directory is still the same: /usr/lib/pymodules/python2.7/catkin_pkg/__init__.pyc

2013-10-01 07:35:56 -0500 received badge  Notable Question (source)
2013-10-01 03:49:01 -0500 received badge  Notable Question (source)
2013-10-01 03:07:06 -0500 commented answer problem creating a new package with catkin_create_pkg

I have followed all your instructions but the problem is still there.

2013-09-30 20:12:44 -0500 commented question problem creating a new package with catkin_create_pkg

The directory content is: /usr/lib/pymodules/python2.7/catkin_pkg/__init__.pyc

2013-09-30 20:11:30 -0500 received badge  Popular Question (source)
2013-09-29 23:28:16 -0500 commented question problem creating a new package with catkin_create_pkg

The version of the catkin_pkg is 0.1.20

2013-09-29 21:24:19 -0500 commented answer problem creating a new package with catkin_create_pkg

I have created the workspace following the tutorial of creating a catkin workspace and I have set up the shell environment properly, but the templates aren't found.

2013-09-29 21:22:40 -0500 commented answer problem creating a new package with catkin_create_pkg

I have followed the instructions of the link but the error is still there.

2013-09-26 21:18:15 -0500 asked a question problem creating a new package with catkin_create_pkg

I'm trying to create a new package in my workspace with catkin_create_pkg and I get this error:

afgonzalez@afgonzalez-desktop:~/ros_workspace/src$ catkin_create_pkg 
  Traceback (most recent call last):
  File "/usr/local/bin/catkin_create_pkg", line 10, in <module>
  from catkin_pkg.package_templates import create_package_files, PackageTemplate

  ImportError: No module named catkin_pkg.package_templates</div>

I have reinstalled ros-groovy-catkin and python-catkin-pkg package but the error still there.

2013-06-26 04:19:30 -0500 received badge  Famous Question (source)
2013-06-17 04:33:13 -0500 commented question Communication problems with a server

Until now we have been doing speech synthesis via festival. The main reason of buying a Verbio licence is that we need some language that Festival doesn't support.

2013-06-17 03:26:19 -0500 received badge  Notable Question (source)
2013-06-16 23:43:36 -0500 received badge  Popular Question (source)
2013-06-14 01:34:30 -0500 received badge  Editor (source)
2013-06-14 00:52:27 -0500 answered a question Communication problems with a server

The ros node is very simple, because firstly I only want to test the testdemo in ros environment. The first sentences of the node are those:

if (argc>1)
text = argv[1];
if (argc>2)
vox_setparm(-1, VXGB_DEFSERVER, argv[2]);

ros::init(argc, argv, "tekniker_tts");

printf("Inicializando ... \n");

vox_tts_init(0, "es");

After vox_tts_init call the software stucks on.

I have linked the SDK library to the node adding to the CMakeList.txt file those lines:

rosbuild_add_executable(tekniker_tts src/tekniker_tts.cpp)

target_link_libraries(tekniker_tts voxlib)

Thanks

2013-06-13 03:27:55 -0500 asked a question Communication problems with a server

Dear all,

I need to communicate with a server that is running on my local machine. It is a Verbio TTS server and I have a SDK library which includes all the required functionalities.

When I generate a C++ application where the communication with the server is established and some operation are made, it works well; however, when I create a ROS node with the same code, it compiles well but at runtime the software crashes upon initiating communication.

The ROS node is very simple, because I only want to test the testdemo in a ROS environment. Here are the first few lines of the node:

if (argc>1)

  text = argv[1];

if (argc>2)

  vox_setparm(-1, VXGB_DEFSERVER, argv[2]);

ros::init(argc, argv, "tekniker_tts");

printf("Initializing... \n");

vox_tts_init(0, "es");

After the vox_tts_init call the software crashes.

I have linked the SDK library to the node by adding these lines to the CMakeList.txt file:

rosbuild_add_executable(tekniker_tts src/tekniker_tts.cpp)

target_link_libraries(tekniker_tts voxlib)

Does anyone know how I can solve this problem?

The communication between client and server is established through ports 8764 and 8765. Could it be a problem on ROS environment?

Thanks in advance

2013-05-23 01:14:42 -0500 received badge  Notable Question (source)
2013-05-15 13:00:10 -0500 received badge  Popular Question (source)
2013-04-02 00:16:44 -0500 asked a question Trajectory execution and environment monitoring

Dear all,

We are working in Electric with arm-navigation stack and we would like to know if once the planned trajectory has been sent to execution, an environment monitoring is made. We are worried as the robot surrounding is highly dynamic (the environment changes) and a collision can happen as new objects appear in the planned path. Does the environment server (or any other module of arm-navigation) check for possible collisions during path execution? Or must we check the collision map to detect those possible situations?

On the other hand, we have read that MoveIt! in Groovy implements this path execution checking. Is it a new addition to the arm navigation module?

Thanks in advance,

Ane Fernandez

2013-02-18 22:19:55 -0500 received badge  Popular Question (source)
2013-02-09 11:39:18 -0500 received badge  Famous Question (source)
2012-12-10 00:10:49 -0500 asked a question Move arm: cannot get accurate joint position in simulation

Hello,

We are working using a Robotnik modular arm. We have defined the model of the robot using URDF files but we are having problems in simulation using Gazebo:

-We cannot get accurate joint position in one of the joints, specifically on the second one (error of 0.01 while in the rest the error is of 0.001 or less). -When we use Move_arm in the real robot we get errors of 0.001 or less, acceptable for our needs. -Initially we thought that the problem comes from the joint trajectory controller as it is which sends the control messages to each joint but we have tested it with PR2 and it reaches the desired positions accurately. -We have tried to solve the problem tunning the parameters of the PID but we don't know if it is the problem and how to tune them.

Has anyone had this problem?

Thanks

2012-12-04 06:08:42 -0500 received badge  Notable Question (source)
2012-12-03 21:48:38 -0500 received badge  Student (source)
2012-12-03 21:42:29 -0500 received badge  Popular Question (source)
2012-11-29 01:54:20 -0500 asked a question make_plan service call fail

Hi everyone,

When I call to make_plan service of move_base node I get this error:

move_base must be in an inactive state to make a plan for an external user

I've checked that when I execute call() function, move_base is in Active mode. After that the action that is being executed is canceled, it passes to the preempted state. I suppose at that state it could be possible to make a call so I wait calling periodically to exists() service method to check if the service is both advertised and available.

I don't get it working well, so I would like to know what I'm doing wrong or if there is another way to check service's availability.

Thanks