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

zurish's profile - activity

2019-06-05 09:37:55 -0500 received badge  Student (source)
2016-04-19 02:33:35 -0500 received badge  Famous Question (source)
2015-10-28 11:20:49 -0500 received badge  Necromancer (source)
2015-10-28 11:20:49 -0500 received badge  Teacher (source)
2015-03-30 12:31:28 -0500 commented answer Source file of ROS

Thank you. Your answer explains.

2015-03-30 11:59:58 -0500 received badge  Notable Question (source)
2015-03-30 03:25:01 -0500 received badge  Popular Question (source)
2015-03-29 20:35:38 -0500 received badge  Famous Question (source)
2015-03-29 20:33:22 -0500 asked a question Source file of ROS

Hi there. I have installed ROS on Mac OS and found there are source files in most packages' src folder. But in Ubuntu, ROS packages reside in opt folder and I can not find source file. What is the difference?

2015-03-20 11:13:26 -0500 commented question Problem with multirobots navigation

Hi Prima89, I'm interested in muti-robot planning and have tons of questions in how to implementation in ROS. Could you please walk me through the idea? Thank you.

2015-03-20 11:13:26 -0500 received badge  Commentator
2015-03-14 02:17:18 -0500 received badge  Notable Question (source)
2015-03-13 14:23:14 -0500 received badge  Scholar (source)
2015-03-13 14:23:12 -0500 received badge  Supporter (source)
2015-03-13 14:23:10 -0500 commented answer orocos-bfl

This works for me too. Thanks a lot and I think I learnt a lot from you!

2015-03-13 14:06:31 -0500 received badge  Popular Question (source)
2015-03-13 11:25:24 -0500 commented answer Orocos bfl for indigo,

I'm trying to install robot_pose_ekf to Mac OS. I can just clone it from gitbut and catkin_make it. Please see my question at orocos-bfl. Thank you.

2015-03-13 11:17:29 -0500 commented answer Orocos bfl for indigo,

@gvdhoom

Yes , I asked as a question at orocos-bfl. Sorry about that. I tried to add everything to the CMakeLists.txt of the package I want to install(robot_pose_ekf), but it does not work. Thank you.

2015-03-13 11:12:48 -0500 asked a question orocos-bfl

Hello all, I was trying to catkin_make "robot_pose_ekf" package I cloned from github and it's CMakeLists.txt is: link text. The output error was:

checking for module 'orocos-bfl'

--   package 'orocos-bfl' not found

CMake Error at /usr/local/Cellar/cmake/3.1.3/share/cmake/Modules/FindPkgConfig.cmake:340 (message):
  A required package was not found
Call Stack (most recent call first):
  /usr/local/Cellar/cmake/3.1.3/share/cmake/Modules/FindPkgConfig.cmake:502 (_pkg_check_modules_internal)
  CMakeLists.txt:13 (pkg_check_modules)


-- Configuring incomplete, errors occurred!

<== Failed to process package 'robot_pose_ekf':

Then I cloned "orocos-bfl" package from github and when I catkin_make it, the output was:

Packages not found in the workspace: orocos-bfl

Then I followed bfl-ROS.wiki the following lines to CMakeLists.txt of "robot_pose_ekf" package:

   1 find_package(PkgConfig)
   2 
   3 pkg_check_modules(BFL REQUIRED bfl)
   4 
   5 message("BFL include dirs:" ${BFL_INCLUDE_DIRS})
   6 message("BFL library dirs:" ${BFL_LIBRARY_DIRS})
   7 
   8 include_directories(${BFL_INCLUDE_DIRS})
   9 link_directories(${BFL_LIBRARY_DIRS})
  10 
  11 [..]
  12 
  13 # for every target using BFL:
  14 target_link_libraries(your_executable ${BFL_LIBRARIES})

In the original CMakeLists.txt there is a line:

pkg_check_modules(BFL REQUIRED orocos-bfl)

and I just substituted is orocos-bfl with bfl as suggested and insert rest of above lines. The result was, this did not work, output was:

package 'bfl' not found

which is installed already and can be found by rospack:

/Users/hxin1/ros_catkin_ws/src/bfl-release-release-indigo-bfl-0.7.0-6
2015-03-12 22:58:19 -0500 answered a question Orocos bfl for indigo,

Hi jarvisschultz! Please forgive my ignorance. I'm new to ROS. Here is how I understand this:

   1 find_package(PkgConfig)
   2 
   3 pkg_check_modules(BFL REQUIRED bfl)
   4 
   5 message("BFL include dirs:" ${BFL_INCLUDE_DIRS})
   6 message("BFL library dirs:" ${BFL_LIBRARY_DIRS})
   7 
   8 include_directories(${BFL_INCLUDE_DIRS})
   9 link_directories(${BFL_LIBRARY_DIRS})
  10 
  11 [..]
  12 
  13 # for every target using BFL:
  14 target_link_libraries(your_executable ${BFL_LIBRARIES})

I just insert the above code from line.1 to line.9 to the top-level CMakeLists.txt in src folder in which all of ROS packages reside. And the line.14 should be in the CMakeLists.txt of the specific package which uses bfl(which is robot_pose_ekf in my case). Is this right? And my question is I'm not sure in what detailed line in the txt file(s) should I insert them. Thank you.

2015-03-12 21:35:27 -0500 commented answer BFL not installing package information under /share (missing robot_pose_ekf dependency)

Hi guys! Have you solved the problem?

2015-03-12 15:13:09 -0500 commented answer Orocos bfl for indigo,

Hi there, I'm not sure where to add the lines in the second section of the link you provided .To the CMakeLists.txt who uses orocos-bfl? Or to orocos-bfl's CMakeLists.txt? Or somewhere else? Thank you.

2015-03-12 14:29:54 -0500 commented answer Using Orocos-BFL in ROS

Hi guys, I don't know where to add above lines. To the CMakeLists.txt who uses orocos-bfl? Or to orocos-bfl's CMakeLists.txt? Thank you.

2015-03-09 15:34:52 -0500 asked a question Navigation package installation on Mac OS X

Hello guys!

I want to perform navigation task in ROS on my Mac and I found I don't have navigation package. The problem is I remember that I installed full-install of ROS which is said to include navigation package. I have the following questions: 1.How to check the ROS on my Mac is full installed or not. 2.Install package to my Mac. I tried pip and brew on ros-indigo-navigation, they didn't work 3.I just found using ROS directly on Mac OS is harder.

Thanks a lot!

2015-03-09 13:36:55 -0500 commented question Creating the map using map_server

Hi there. Have you got any idea about how to create a map? I have the same question.

2015-02-13 12:00:56 -0500 received badge  Enthusiast
2015-02-12 09:58:38 -0500 commented answer Problem with roscore

@dornhege Thanks it's working now.

2015-02-11 13:55:28 -0500 commented answer Problem with roscore

It doesn't work. When I entered the two command lines "rm: cannot remove ‘/root/.ros/’: No such file or directory" showed up. What is the problem?

2015-02-11 13:54:46 -0500 answered a question Problem with roscore

It doesn't work. When I entered the two command lines "rm: cannot remove ‘/root/.ros/’: No such file or directory" showed up. What is the problem?

2014-11-20 12:21:49 -0500 answered a question E: unable to locate package ros-indigo-desktop-full

The same thing happens to me. I followed the steps strictly, but it still can not be found.