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

Mahyar's profile - activity

2014-08-25 18:01:30 -0500 received badge  Famous Question (source)
2014-05-20 22:43:21 -0500 received badge  Notable Question (source)
2014-05-20 20:02:58 -0500 commented question EKF transform imu message from imu_link to base_footprint Problem

@Stefan Kohlbrecher thanks for your answer, its appear continuously.

2014-05-20 20:00:59 -0500 commented question EKF transform imu message from imu_link to base_footprint Problem

@Tom Moore thanks for your answer, yes i tried that but the result is the same.

2014-05-20 06:56:23 -0500 received badge  Popular Question (source)
2014-05-20 01:01:41 -0500 asked a question EKF transform imu message from imu_link to base_footprint Problem

hi i have ros groovy and want to use kalman filter with imu and odometry. unfortunately when i launch my launch file this error accrued.

Could not transform imu message from imu_link to base_footprint

this is my laucnch file:

 <launch>
<param name="use_sim_time" value="true"/>    
  <!-- Robot pose ekf -->   
    <node pkg="robot_pose_ekf" type="robot_pose_ekf" name="robot_pose_ekf" output="screen">
    <param name="freq" value="30.0"/>
    <param name="sensor_timeout" value="1.0"/>
    <param name="publish_tf" value="true"/>
    <param name="odom_used" value="true"/>
    <param name="imu_used" value="true"/>
    <param name="vo_used" value="false"/>
    <remap from="odom" to="base_odometry/odom" />
    <remap from="imu_data" to="torso_lift_imu/data" />
  </node>      
<node pkg="rosbag" name="rosbag" type="play" args="--clock --hz 100 -d .4 /home/mahyar/Desktop/bagFiles/lightBag3Final/2014-05-18-15-06-23.bag " />      
 </launch>

this is my topics:

/base_odometry/odom
/tf
/torso_lift_imu/data

and tf tree is: http://www.docdroid.net/cewp/frames.pdf.html

when i echo /torso_lift_imu/data the frame_id is imu_link.

thank you very much for rescuing me in this awful situation

2014-05-20 01:00:19 -0500 answered a question converting image_raw to image_rect from kinect data

i used the http://wiki.ros.org/image_proc package for solving my problem.

2014-05-20 00:59:08 -0500 received badge  Scholar (source)
2014-05-20 00:41:38 -0500 received badge  Famous Question (source)
2014-05-20 00:23:44 -0500 commented answer problem with fovis

use http://wiki.ros.org/image_proc instead of remap for having image_rect.

2014-05-08 01:07:17 -0500 received badge  Enthusiast
2014-05-07 00:05:38 -0500 received badge  Famous Question (source)
2014-05-05 02:03:59 -0500 received badge  Famous Question (source)
2014-04-01 03:38:08 -0500 received badge  Popular Question (source)
2014-04-01 03:38:08 -0500 received badge  Notable Question (source)
2014-02-09 23:11:57 -0500 received badge  Notable Question (source)
2014-02-07 08:28:54 -0500 received badge  Popular Question (source)
2014-02-07 04:26:43 -0500 commented answer EKF dosen't work perfectly

thank you, my gole is fusing /odom and /vo , but i read kalman could increase accuracy of data even for one sensor, so i started for /odom, but the result of /odom_combined is the same of /odom. do you have any idea?

2014-02-07 03:52:29 -0500 asked a question EKF dosen't work perfectly

when i launch exf for my /odom data , the results are the same of input this is my lunch file :

<launch>

<node pkg="robot_pose_ekf" type="robot_pose_ekf" name="robot_pose_ekf">
  <param name="output_frame" value="odom_combined2"/>
  <param name="freq" value="50.0"/>
  <param name="sensor_timeout" value="1.0"/>  
  <param name="odom_used" value="true"/>
  <param name="imu_used" value="false"/>
  <param name="vo_used" value="false"/>
  <param name="debug" value="false" />
  <param name="self_diagnose" value="true" />
</node>

</launch>

all of my topices are:

/base_odometry/odometer
/base_odometry/state
/base_scan
/clock
/odom
/robot_pose_ekf/odom_combined
/rosout
/rosout_agg
/tf
/tilt_scan
/torso_lift_imu/data
/torso_lift_imu/is_calibrated

first of all, i launch ekf file and then use this rosbag play 2011-04-11-07-34-27.bag /base_odometry/odom:=/odom --clock command to run my dataset.

2014-02-04 20:33:38 -0500 asked a question converting image_raw to image_rect from kinect data

Hi i downloaded bagefile from mit stata center data set for testing fovis package. for kinect data(mono depth). fovis subscribing from this topices:

/camera/rgb/image_rect
/camera/depth_registered/image_rect 
/camera/rgb/camera_info
/camera/depth_registered/camera_info

but MIT bage file has this packages:

/camera/depth/camera_info
/camera/depth/image_raw
/camera/rgb/camera_info
/camera/rgb/image_raw

i used this command to play bagfiles: rosbag play 2012-04-26-06-48-00.bag. so, what i do for solve this problem?

2014-01-02 07:09:50 -0500 received badge  Notable Question (source)
2013-12-30 11:50:52 -0500 received badge  Popular Question (source)
2013-12-29 09:27:40 -0500 commented question kinect motor driver cannot be detected

did you ever tested [freenect](http://wiki.ros.org/freenect_stack) package?

2013-12-29 09:14:48 -0500 asked a question rosws problem groovy

Hi when i use rosws init ~/groovy_workspace /opt/ros/groovy on terminal i got this problem

Traceback (most recent call last):
  File "/usr/bin/rosws", line 54, in <module>
    from rosinstall.common import MultiProjectException
ImportError: No module named commo

i didn’t have any problems on fuerte, How could i fix this? thanks

2013-11-22 01:40:34 -0500 commented answer Converting Kinect depth image to Real world coordinate.
2013-05-28 01:43:41 -0500 received badge  Supporter (source)