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

jbinney's profile - activity

2023-02-19 05:10:19 -0500 received badge  Nice Question (source)
2023-02-19 05:09:34 -0500 received badge  Famous Question (source)
2020-12-18 12:59:22 -0500 received badge  Notable Question (source)
2020-12-18 12:59:22 -0500 received badge  Popular Question (source)
2020-05-14 17:22:09 -0500 commented answer ROS2: rviz in docker container

@ruffsl i haven't tried 20.04 yet - I'll update this issue when i do (might be a while)

2020-05-12 01:02:45 -0500 commented answer ROS2: rviz in docker container

Ah! It was (at least for me) a problem with the default apparmor profile blocking that dbus call. Adding "--security-opt

2020-05-11 19:50:46 -0500 commented answer ROS2: rviz in docker container

Update to the update: i was wrong... that didn't fix it.

2020-05-11 18:48:06 -0500 commented answer ROS2: rviz in docker container

Update: i managed to workaround the problem by downloading the newest docker seccomp config from https://raw.githubuserc

2020-05-11 17:06:46 -0500 commented answer ROS2: rviz in docker container

@ruffsl - did you ever figure out why --privileged was needed in this case? We use --net=host and we see gazebo, rviz, a

2020-04-25 12:46:43 -0500 commented question Bloom takes ~15 minutes to pull down rosdistro

One alternative to shallow clones might be to have bloom use the "--reference" option when cloning rosdistro. Then there

2020-04-24 18:33:35 -0500 commented question Bloom takes ~15 minutes to pull down rosdistro

Seems to be a github issue. I just reproduced it by cloning using an xauth token - it ran very slow. Then tried again, a

2020-04-24 18:22:37 -0500 commented question Bloom takes ~15 minutes to pull down rosdistro

Interestingly i can clone the the rosdistro repo in 30 seconds. Not sure why "Pulling latest rosdistro branch" takes so

2020-04-24 14:23:13 -0500 asked a question Bloom takes ~15 minutes to pull down rosdistro

Bloom takes ~15 minutes to pull down rosdistro I've noticed this when releasing packages for noetic. It looks like it is

2018-08-17 07:16:32 -0500 received badge  Good Answer (source)
2016-07-27 17:56:45 -0500 marked best answer catkin+tmux problem

When I use catkin_make inside of a tmux session, and then source the devel/setup.sh, I sometimes end up with the CMAKE_PREFIX_PATH and the ROS_PACKAGE_PATH being backwards. This causes my overlay to be an underlay, so catkin finds system ROS packages before my source packages. It doesn't always happen, and I don't have a reliable way to reproduce it. Its possible that it isn't actually related to tmux, but I've only seen the problem when inside a tmux session.

I'm posting here in the hope that someone has some insight into why this happens.

Here's the issue for this on github: https://github.com/ros/catkin/issues/455

2016-06-02 15:54:22 -0500 received badge  Good Answer (source)
2016-05-18 02:49:40 -0500 received badge  Nice Answer (source)
2016-05-17 16:19:12 -0500 answered a question Diagnosing issues with bloom + github two-factor authentication

The way I get around this is by adding the following to my .gitconfig:

# Always use ssh for github, even if the remote URL uses https or git                                                                                                 
[url "git@github.com:"]                                                                                        
  insteadOf = git://github.com/                                                                                
[url "git@github.com:"]                                                                                        
  insteadOf = https://github.com/

Then just make sure that you've added the your ssh key from the computer you are on to your github profile.

2016-05-10 19:25:08 -0500 commented question simulate a Stanley segway RMP210 in Gazebo

I had to re-open the question in order to add my comment as an answer, but you can close it again now.

2016-05-10 19:18:49 -0500 answered a question simulate a Stanley segway RMP210 in Gazebo

Looks like you may be missing some dependencies. For example, one of the errors appears to fail to find something in the effort_controllers package. You can install dependencies using rosdep: rosdep install -i --from-path .

2016-05-10 19:17:46 -0500 commented question simulate a Stanley segway RMP210 in Gazebo

Great! I'll add that as an answer so to this question so it is easier for people to see. Out of curiosity, what tutorial are you following to use the segway in simulation?

2016-05-10 17:39:55 -0500 commented question simulate a Stanley segway RMP210 in Gazebo

Looks like you may be missing some dependencies. For example, one of the errors appears to fail to find something in the effort_controllers package. You can install dependencies using rosdep. Could you try running "rosdep install -i --from-path ." in your source directory?

2016-03-30 21:24:20 -0500 commented question Python import: rosrun works well but roslaunch reports error

In your setup.py you list 'src' as the package_dir but I don't see any 'src' directory in your package directories.

2015-10-26 21:50:07 -0500 commented answer Moveit! make Invoking "make -j4 -l4" failed

I've gotten this build error when compiling a version of moveit_ros against a different version of moveit_core. Can you run "git pull" in both the moveit_ros and moveit_core directories and then try building again?

2015-09-16 00:31:02 -0500 received badge  Nice Answer (source)
2015-09-12 22:08:50 -0500 commented answer turtlebot apt-get update has generated an error on minimal.launch

Recompiling robot_state_publisher from source didn't work for me either, but recompiling both robot_state_publisher and the robot_model repo from source did work. I'm yet sure that this is just a bug within libpcre

2015-06-10 00:22:58 -0500 answered a question GPS based Autonomous car

There might be simpler first projects than self driving cars :-)

I'd recommend starting by reading the journal papers written by the DARPA Urban Challenge competitors. A good one to start with is the BOSS paper

Then just work backwards from there. A small matter of learning state of the art planning, controls, and perception.

2015-02-17 00:58:54 -0500 answered a question Roslibjs for a client to communicate with simple action Server

The actionName won't be a path.. I think it will be just the root name of the action type; in this place "Control", or if that isn't unique then the package_name/action_name (control/Control). Then rosbridge will have to find that action. So make sure that the control package is built, and you've sourced the devel/setup.bash in the workspace where you built it before you run rosbridge. If you need help building your ros workspace, see this tutorial: http://wiki.ros.org/catkin/Tutorials/...

2015-01-28 03:38:21 -0500 received badge  Good Answer (source)
2015-01-28 03:38:21 -0500 received badge  Enlightened (source)
2014-11-04 13:53:05 -0500 commented question roscpp memory usage

Could you describe what other nodes you have running? I'm not able to reproduce the memory leak by just running the code posted here - do you have subscribers on the chatter_pub topic?

2014-08-27 18:13:11 -0500 commented question Should a calibrated frame be in a URDF

In the past I've usually manually done the "reloading" of the urdf by restarting the entire robot. Automatically reloading the URDF while running would be neat, but also could be tricky. You would need to make sure that every ROS node is designed to watch for and use a modified robot description.

2014-08-27 13:54:32 -0500 answered a question don't work RGB in openni_kinect

You're using a deprecated ROS version (electric) on a version of ubuntu that is no longer supported (11.10) with a camera package that isn't released anymore (openni_kinect) and a camera whose chipset maker got bought by apple and so will likely stop getting sold at some point (xtion).

If you switch to ROS indigo on ubuntu 14.04 and use openni2_camera to read from the camera, you'll have a much better chance of finding people who know how to answer your questions.

2014-08-25 19:00:43 -0500 commented answer savioke robot specs / implementations

Out of curiosity, what kind of robot are you working on?

2014-08-25 19:00:30 -0500 commented answer savioke robot specs / implementations

Just out of convenience. It's really nice to be able to connect to to the robot over wifi from my laptop and display the same webpage that shows up on the UI. Once we've got the interface all figured out, it may make sense to move to a native android app, or change the comms.

2014-08-25 18:16:53 -0500 commented answer savioke robot specs / implementations

Morgan is right on - Robot Web Tools is a great way to go. Especially for early prototyping, it lets you use existing web frameworks to make a GUI very quickly. (I work at Savioke).

2014-08-07 02:06:33 -0500 commented answer How can I reference an external project with Catkin?

This seems like a good approach. Thanks for posting this!

2014-08-06 19:53:35 -0500 commented question How can I reference an external project with Catkin?

Do the external projects use cmake? If they provide a cmake config file, you can find_package them just like opencv: http://wiki.ros.org/vision_opencv

2014-08-04 00:10:14 -0500 received badge  Famous Question (source)
2014-07-25 20:27:41 -0500 commented question PC104 SBC supported by ROS

ROS runs well on ubuntu linux; so you really want to find an SBC that can run ubuntu. If you want to use the newest ROS (Indigo) then you need an SBC that can run Ubuntu 14.04

2014-07-17 20:22:35 -0500 commented question smach_viewer does not work in indigo

There's a couple of things here. The queue_size warning should be fixed, but doesn't actually break anything yet. The real problem looks like xdot now returns floating point numbers instead of ints. I can confirm that I see the same problem on my computer. Can you create an issue here: https://github.com/ros-visualization/executive_smach_visualization/issues

2014-06-19 19:59:00 -0500 commented question IR kinect subscribtion

Info? What sensor? What software? What OS? What are you launching?

2014-06-10 17:51:26 -0500 commented answer rviz not working for sicklms

sounds like the laser is actually using the "laser" coordinate frame.... what do you see in the frame_id field of the laser message when you echo it?

2014-06-10 16:23:04 -0500 received badge  Notable Question (source)
2014-06-10 15:46:17 -0500 answered a question rviz not working for sicklms

This is a transform problem. The laser measurements are published in the base_laser coordinate frame, but rviz is trying to display them in the "laser" or "map" coordinate frame. Set your fixed frame to "base_laser" and you should see the data displayed. If you want to use another frame you need to make sure TF transforms are published to connect base_laser to your other frames (for instance by using http://wiki.ros.org/robot_state_publi... and a urdf)

2014-06-03 13:39:22 -0500 commented question rviz not working for sicklms

Did you add the laser topic in rviz? What frame is the laser scan in? What is your fixed_frame in rviz?

2014-05-28 16:14:47 -0500 commented question ardrone_autonomy segmentation fault

You should open an issue on the bug tracker for it: https://github.com/AutonomyLab/ardrone_autonomy/issues If you're comfortable with debugging tools, then use GDB to get a backtrace of the segfault and include that in the issue.

2014-05-28 16:11:05 -0500 answered a question Storing the data inside an array as rosbag

rosbag has a C++ API that you can use directly in your code: http://wiki.ros.org/rosbag/Code%20API

But I think everything you store will need to be ROS messages. So you'd need to define a ROS message type for your array, e.g. a file called "Foo.msg" which contains "float64[] some_array". Then you need to get catkin to generate code wrappers for that message.

2014-05-09 00:26:48 -0500 received badge  Nice Answer (source)
2014-04-10 14:36:40 -0500 commented question Problems building & running Openni2_camera

How did you install OpenNi2? The ROS debs are built from a fork of that - there may be modifications. Can you uninstall your source copy of OpenNi2 and `sudo apt-get install libopenni2-dev libopenni2-0`?