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

vhwanger's profile - activity

2017-08-21 14:14:51 -0500 received badge  Famous Question (source)
2017-02-10 04:53:41 -0500 received badge  Famous Question (source)
2015-09-28 01:11:19 -0500 received badge  Notable Question (source)
2015-09-28 01:11:19 -0500 received badge  Notable Question (source)
2015-09-28 01:11:19 -0500 received badge  Popular Question (source)
2015-03-26 09:40:11 -0500 received badge  Popular Question (source)
2015-01-26 03:04:34 -0500 received badge  Notable Question (source)
2015-01-26 03:04:34 -0500 received badge  Famous Question (source)
2015-01-26 03:04:34 -0500 received badge  Popular Question (source)
2015-01-11 01:50:22 -0500 received badge  Notable Question (source)
2014-11-17 09:48:01 -0500 received badge  Famous Question (source)
2014-08-29 04:43:40 -0500 received badge  Notable Question (source)
2014-07-10 03:32:01 -0500 received badge  Notable Question (source)
2014-07-10 03:32:01 -0500 received badge  Famous Question (source)
2014-05-17 09:44:23 -0500 asked a question FCL integration

I'd like to use FCL as a collision checker in my own planner that's currently not plugged into Moveit. Is there any documentation or code out there that can help me integrate FCL into my planner? I'm going to be testing on the PR2, so I'd imagine people have done this before Moveit, but I can't find any information.

2014-04-06 14:52:31 -0500 received badge  Notable Question (source)
2014-03-21 01:44:50 -0500 received badge  Famous Question (source)
2014-02-26 01:32:47 -0500 received badge  Popular Question (source)
2014-02-16 05:38:10 -0500 received badge  Popular Question (source)
2014-01-28 17:32:31 -0500 marked best answer Changing format of debug output

How do I change the format of ROS_INFO/ROS_DEBUG, etc so that it prints out the filename and line number that it was called from?

2014-01-28 17:32:26 -0500 marked best answer CMake optimizing out values in debug mode

I'm trying to view some simple int variables in GDB, but they're all being marked as "value optimized out". At the top of my CMakeLists.txt file, I have

set(ROS_BUILD_TYPE Debug)

Do I need to set something else?

2014-01-28 17:30:17 -0500 marked best answer Laptop recommendations

I'm picking out a laptop that will be exclusively used for ROS development. Does anyone have any recommendations for a specific model? I've got my eye on a Thinkpad T530, but I've heard of problems with Nvidia Optimus. I saw that a new driver has been released this month - how well does that work?

Edit: I'm going to be doing a lot of RViz/PCL stuff, so I need some horsepower

2014-01-28 17:28:48 -0500 marked best answer roscd pointing to wrong location

Edit: Ah hah, this turned out to be a package problem, not a rospack problem. Sorry!

I have a package in an overlay. This same package exists in the /opt stacks. My ROS_PACKAGE_PATH has the overlay before the /opt stacks.

/home/vchwang/ros_workspace/sandbox:/opt/ros/electric/stacks:/opt/ros/electric/ros

However, roscd still points to the one in /opt. As a result, rosmake refuses to build the package in my overlay. How do I change this?

Some more info:

Even after running rospack profile, my rospack_cache claims the package sbpl is in /opt/ros/electric/stacks/arm_navigation/sbpl. If I go into ~/ros_workspace/sandbox/sbpl and rosmake, I get:

[ rosmake ] No package selected and the current directory is not the correct path for package 'sbpl'.

2014-01-28 17:28:31 -0500 marked best answer JointTrajectoryAction position vs /joint_state positions

I'm trying to replay a saved trajectory by using the joint_states positions and JointTrajectoryAction. However, for some of the joints (upper arm roll), the /joint_state accumulates all the movement, so its position is some arbitrarily large number (let's say 600). However, JointTrajectoryAction seems to work on a different frame, because if I issue a goal to position 600, it ends up spinning indefinitely despite the /joint_state claiming it's very close to 600. How do the joint_positions differ?

2014-01-28 17:28:10 -0500 marked best answer Using Hokuyo node with multiple lasers

I've got two Hokuyo laser scanners, both of which work individually when I run the hokuyo_node and change to the appropriate port. However, I'd like to have them both running at the same time, publishing to two different topics. How do I go about this?

2014-01-10 08:07:24 -0500 asked a question costmap2d map inflation from octomap projected_map

I'm trying to hook up costmap2d with octomap's projected_map topic, but I can't seem to figure out how to get things working. All I really need is for costmap2d to inflate and crop a static map and return it as an OccupancyGrid. I've got the following config:

global_frame: /map
robot_base_frame: base_link
update_frequency: 1.0
publish_frequency: 1.0
map_topic: /projected_map

#set if you want the voxel map published
publish_voxel_map: true

#set to true if you want to initialize the costmap from a static map
static_map: true

#START VOXEL STUFF
map_type: costmap
origin_z: 0.0
z_resolution: 0.2
z_voxels: 10
unknown_threshold: 10
mark_threshold: 0
#END VOXEL STUFF

transform_tolerance: 0.3
obstacle_range: 2.5
max_obstacle_height: 2.0
raytrace_range: 3.0
footprint: [[-0.325, -0.325], [-0.325, 0.325], [0.325, 0.325], [0.46, 0.0], [0.325, -0.325]]
#robot_radius: 0.46
footprint_padding: 0.01
inflation_radius: 0.55
cost_scaling_factor: 10.0
lethal_cost_threshold: 100
observation_sources: base_scan
base_scan: {data_type: LaserScan, expected_update_rate: 0.4,
  observation_persistence: 0.0, marking: true, clearing: true, max_obstacle_height: 0.4, min_obstacle_height: 0.08}

When I start up both nodes (octomap server and costmap2d), I don't get an active gridcell topic in rviz. Also, I'm not running this with Gazebo, if that matters. Any ideas?

2013-12-24 13:00:24 -0500 asked a question Size of octomap's projected map

I'd like to use the projected map generated from octomap for some 2d stuff, but when I look at the map returned as a nav_msgs/OccupancyGrid, it's of size 1001 x 1001 (when my map is half that). Is there some way to crop the map to a defined size?

2013-12-19 10:36:52 -0500 marked best answer PR2 unable to use wired connection

After an upgrade to Groovy, our PR2 doesn't seem to be using the wired network. Looking at the
/var/log/roam/console-output.log file, I see (with timestamps removed)

 validate_common returned False
 Discarding packet based on xid: 2742288446 != 11612
 validate_common returned False
 Discarding packet based on xid: 2742288446 != 11612
 validate_common returned False

 Fri Oct 25 11:59:11 2013 1382727551.35
 # 0      ddwrt     0.0  99.999  99.999             Wired  99.998 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active
 [  INFO ] : State machine transitioning 'SELECT':'fail'-->'ERROR'

 Fri Oct 25 11:59:12 2013 1382727552.35
 # 0      ddwrt     0.0  99.998  99.998             Wired  99.997 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active
- Base station address is 192.168.1.142:1194

 Fri Oct 25 11:59:13 2013 1382727553.35
 # 0      ddwrt     0.0  99.998  99.998             Wired  99.997 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active

 Fri Oct 25 11:59:14 2013 1382727554.35
 # 0      ddwrt     0.0  99.999  99.999             Wired  99.997 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active
- Base station address is 192.168.1.142:1194

 Fri Oct 25 11:59:15 2013 1382727555.35
 # 0      ddwrt     0.0  94.999  94.999             Wired  89.998 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active

 Fri Oct 25 11:59:16 2013 1382727556.35
 # 0      ddwrt     0.0  99.999  99.999             Wired  99.998 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active
 [  INFO ] : State machine transitioning 'ERROR':'done'-->'INIT'
 [  INFO ] : State machine transitioning 'INIT':'done'-->'SELECT'

 Fri Oct 25 11:59:17 2013 1382727557.35
 # 0      ddwrt     0.0  99.998  99.998             Wired  99.997 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active

 Fri Oct 25 11:59:18 2013 1382727558.35
 # 0      ddwrt     0.0  99.999  99.999             Wired  99.998 100 rule   active
 # 1    bs@lan1     0.0    -inf    -inf             Wired   0.000 100 norule active
 # 2       wan0     0.0    -inf    -inf             Wired  -1.000  -1 norule active
 Discarding packet based on xid: 17313 != 52692
 validate_common returned False
 Discarding packet based on xid: 17313 != 52692
 validate_common returned False
 [  INFO ] : State machine transitioning ...
(more)
2013-12-11 05:17:21 -0500 received badge  Famous Question (source)
2013-12-10 04:03:21 -0500 commented answer PR2 unable to use wired connection

Unfortunately, I also double as the network admin. Might this have to do with us not using the network boot for the base station? We filed a ticket, but it has gone unattended to.

2013-12-09 21:48:22 -0500 received badge  Notable Question (source)