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

HououinKyouma's profile - activity

2017-09-29 03:11:18 -0500 commented question problem publishing octomap msg from an octomap file

Did you manage to solve this problem? In my case, I actually am receiving the message but Rviz tells me that the octomap

2017-09-29 02:57:32 -0500 commented question Archlinux pocketsphinx

Sorry for the late response, but unfortunately I was never able to really solve this. I had this problem on Archlinux, b

2017-08-05 23:48:48 -0500 received badge  Student (source)
2016-10-31 09:45:28 -0500 received badge  Famous Question (source)
2016-03-11 07:42:48 -0500 received badge  Notable Question (source)
2016-01-22 00:55:50 -0500 received badge  Famous Question (source)
2016-01-22 00:55:50 -0500 received badge  Notable Question (source)
2015-11-06 15:24:14 -0500 received badge  Famous Question (source)
2015-08-27 01:43:42 -0500 received badge  Popular Question (source)
2015-08-27 01:13:54 -0500 received badge  Notable Question (source)
2015-08-27 01:13:54 -0500 received badge  Popular Question (source)
2015-07-23 01:19:39 -0500 commented question Archlinux pocketsphinx

Thanks for your reply, I will check that out, thanks

2015-07-21 10:00:06 -0500 asked a question Archlinux pocketsphinx

Hi,

I am trying to get pocketsphinx running on archlinux: http://wiki.ros.org/pocketsphinx .

I have the file libgstpocketsphinx.so in /usr/lib/gstreamer-0.10 (I also have one in /usr/lib/gstreamer-1.0 as a result of a failed attempt to make this work). However, I keep getting the error glib.GError: no element "vader". From what I read so far, for ubuntu users this was because they were missing the mentioned .so file. However, I do have this file and it is in a place where it should be easily to find. Any idea on how I can solve this? Thanks in advance.

Wilson

2015-06-16 17:52:25 -0500 received badge  Popular Question (source)
2015-06-15 02:26:08 -0500 received badge  Supporter (source)
2015-06-15 02:26:06 -0500 commented answer Overload << operator for msg

I see. I didn't know it was not possible to overload an operator again. The -p option seems useful, but I'm writing my results to a file so I can't use that now. I guess I'll just convert the messages using a function, thanks.

2015-06-15 01:29:00 -0500 asked a question Overload << operator for msg

Hi,

Simple and maybe stupid question, but is it possible to overload the << operator for ROS messages? When a message is generated this operator is automatically overloaded for them, but I would like to change the way they are printed for plotting purposes.

Wilson

2015-05-28 05:00:45 -0500 received badge  Scholar (source)
2015-05-28 05:00:39 -0500 answered a question rtt_ros_integration does not compile

As pointed out in the comments, this error occurs because of incompatible versions. I solved this problem by following the instructions here:

http://wiki.ros.org/orocos_toolchain

This installs version 2.7, which is good enough for compiling rtt_ros_integration. However, in order to compile the orocos_toolchain I had to switch to the master branch for only the utilrb and typelib repositories. Also, instead of creating a separate workspace for orocos I just put everything in my existing catkin workspace. Using two different workspaces caused some problems with finding packages. Now everything compiles if I issue catkin_make_isolated.

2015-05-27 02:59:19 -0500 received badge  Enthusiast
2015-05-25 05:53:08 -0500 commented question rtt_ros_integration does not compile

I see, I already suspected it might be an old version since it was still using the rosbuild tools rather than catkin. I'm trying to make it work for ros indigo, so guess I'll try to compile the latest version from source again. Thanks for the tip!

2015-05-25 05:29:22 -0500 asked a question rtt_ros_integration does not compile

Hi all.

I am trying to compile the rtt_ros_integration stack, for which I installed Orocos from the AUR (I'm using Archlinux). However, it seems like the installed Orocos looks for a manifest.xml file which it can't find when compiling the stack. The error looks like this:

Orocos-RTT found in /usr/lib64/cmake/orocos-rtt/orocos-rtt-gnulinux-libraries.cmake
-- Found orocos-rtt 2.6.0 for the gnulinux target. Available transports: mqueue

This package is in your ROS_PACKAGE_PATH, so I'm using rosbuild-style package building.
[UseOrocos] Building package src
[rosbuild] Building package src
[rosbuild] Error from syntax check of src/manifest.xml
Traceback (most recent call last):
  File "<string>", line 1, in <module>
  File "/opt/ros/indigo/lib/python2.7/site-packages/roslib/manifest.py", line 139, in parse_file
    return roslib.manifestlib.parse_file(Manifest(), file)
  File "/opt/ros/indigo/lib/python2.7/site-packages/roslib/manifestlib.py", line 497, in parse_file
    raise ValueError("Invalid/non-existent manifest file: %s"%file)
ValueError: Invalid/non-existent manifest file: manifest.xml
CMake Error at /opt/ros/indigo/share/ros/core/rosbuild/private.cmake:78 (message):
  [rosbuild] Syntax check of src/manifest.xml failed; aborting
Call Stack (most recent call first):
  /opt/ros/indigo/share/ros/core/rosbuild/public.cmake:174 (_rosbuild_check_manifest)
  /usr/lib64/cmake/orocos-rtt/UseOROCOS-RTT.cmake:115 (rosbuild_init)
  rtt_ros_integration/rtt_ros/CMakeLists.txt:7 (include)


-- Configuring incomplete, errors occurred!
See also "/home/wko/catkin_ws/build/CMakeFiles/CMakeOutput.log".
Makefile:1243: recipe for target 'cmake_check_build_system' failed
make: *** [cmake_check_build_system] Error 1
Invoking "make cmake_check_build_system" failed
✗ - status code 1

Anyone an idea on how to fix this? Please let me know if you encountered the same and how you solved it.

P.S. I also tried compiling Orocos from source, with no success due to some Ruby/Gem issues.