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

Vihari's profile - activity

2013-01-14 06:01:30 -0500 received badge  Famous Question (source)
2013-01-14 06:01:30 -0500 received badge  Popular Question (source)
2013-01-14 06:01:30 -0500 received badge  Notable Question (source)
2012-01-24 03:09:26 -0500 commented answer pointcloud_to_laserscan on dataset not with kinect
I have them in the bag file, i downloaded it from http://cvpr.in.tum.de/data/datasets/rgbd-dataset/download#freiburg1_xyz dataset
2012-01-24 01:23:06 -0500 answered a question pointcloud_to_laserscan on dataset not with kinect

No! I wasn't talking about simulation. Let me rephrase my question if we see the launch file of pointcloud_to_laserscan

<launch>
  <!-- kinect and frame ids -->
  <include file="$(find openni_camera)/launch/openni_node.launch"/>

  <!-- openni_manager -->
  <node pkg="nodelet" type="nodelet" name="openni_manager" output="screen" respawn="true" args="manager"/>

  <!-- throttling -->
  <node pkg="nodelet" type="nodelet" name="pointcloud_throttle" args="load pointcloud_to_laserscan/CloudThrottle openni_camera">
    <param name="max_rate" value="2"/>
    <remap from="cloud_in" to="/camera/depth/points"/>
    <remap from="cloud_out" to="cloud_throttled"/>
  </node>

  <!-- fake laser -->
  <node pkg="nodelet" type="nodelet" name="kinect_laser" args="load pointcloud_to_laserscan/CloudToScan openni_camera">
    <param name="output_frame_id" value="/openni_depth_frame"/>
    <remap from="cloud" to="cloud_throttled"/>
  </node>
</launch>`

which is taking input from kinect, now that I dont have kinect I want to migrate the point clouds that might have approached from kinect to those that are already there on my system. This might be a trivial problem, but I am a complete newbie so I seek help. Vihari

2012-01-24 00:24:55 -0500 received badge  Supporter (source)
2012-01-23 21:23:26 -0500 received badge  Editor (source)
2012-01-23 21:21:15 -0500 asked a question pointcloud_to_laserscan on dataset not with kinect

Hello everyone, I am a newbie here and I was trying to use some visual slam, RGBD slam and all such things until I have seen this pointcloud_to_laserscan. Now that, I want to see how good it is (by seeing the maps it produces and from odometry data computed from the laserscans) by testing it on the kinect datasets may be because I dont have kinect right now. So, is there a way to do it with this pointcloud_laserscan package. [Note: I am a complete newbie here so many things are pretty unclear to me at present, so I would appreciate if you can help me more elaborately.] Thank you. Vihari.