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

AliAs's profile - activity

2021-11-09 07:26:08 -0500 answered a question aruco_ros not detecting marker

I tried to detect a marker using aruco_ros using two following launch files and faced the same problem. roslaunch usb_ca

2018-10-29 03:02:50 -0500 received badge  Famous Question (source)
2016-06-08 14:19:30 -0500 marked best answer Failed to use gmapping launchfile [new user]

I have slam_gmapping package that contains these folders:

    slam_gmapping-hydro-devel

       gmapping

           launch

           src

           test

       slam_gmapping

I want to launch it with launch file with my own parameters.

the steps I have done are as follow:

  • download the package

  • copy the package to the catkin_ws --> src

  • make a build folder in gmapping folder, so it is now look like this:

    slam_gmapping-hydro-devel
    
       gmapping
    
           launch
    
           src
    
           test
    
           build
    
       slam_gmapping
    
  • build the package using make, cmake .., catkin_make (don't know exactly what they do!)

The question is after those steps, "roslaunch gmapping [Tab]" does not find any launch file But there is a launch file "slam_gmapping_pr2.launch" in launch folder I also tried to use launch file provided here . But the same problem exist. The problem is that ROS does not detect any launch file in the gmapping package! how can I solve the problem?

Thanks

2016-06-04 04:46:37 -0500 received badge  Notable Question (source)
2015-08-25 09:11:52 -0500 received badge  Famous Question (source)
2015-07-17 23:19:47 -0500 received badge  Popular Question (source)
2015-06-16 07:44:44 -0500 received badge  Notable Question (source)
2015-06-12 08:07:22 -0500 asked a question Laser scan's reflectance value

Could you please give me information about structure of reflectance value? how can I use reflectance values? It is of crouse related to the object substance. Is it proportional to distance? is it also related to the difference between ray's angle and normal of surfaces it is reflected from?

2015-03-02 17:08:04 -0500 received badge  Famous Question (source)
2014-12-24 02:44:40 -0500 received badge  Famous Question (source)
2014-10-30 12:37:21 -0500 received badge  Notable Question (source)
2014-10-20 17:31:29 -0500 received badge  Famous Question (source)
2014-10-19 21:24:57 -0500 received badge  Famous Question (source)
2014-10-11 07:00:37 -0500 received badge  Popular Question (source)
2014-10-10 11:48:10 -0500 commented answer Is there any SLAM method based on Octomap representation?

Thank you. I saw the first paper and it seems they did every thing (e.g. extracting visual features, ...) using point clouds and next used Octomap to just reduce the map size. I added this, just to clarify the subject for future readers.

2014-10-10 11:48:10 -0500 received badge  Commentator
2014-10-09 20:33:24 -0500 received badge  Notable Question (source)
2014-10-09 15:06:06 -0500 received badge  Popular Question (source)
2014-10-09 09:35:59 -0500 asked a question Is there any SLAM method based on Octomap representation?

I know what I am saying here is not precise.I know Octomap is a 3D occupancy grid mapping approach based on an octree and there are some SLAM methods that works based on 2D occupancy grids. E.g. Gmapping: a 2D grid-based SLAM algorithm that provides a 2-D occupancy grid map from laser and pose data collected by a mobile robot and Hector SLAM: a 2D grid-based SLAM algorithm that provides a 2-D occupancy grid map using combination of high update 2D mapping and 6DOF pose estimation.

I wanted to know is there any available package (or publication) that tries to use octomap representation to tackle SLAM problem?

2014-10-08 09:18:14 -0500 asked a question How can I have access to values in the octomap datasets

I want to have access to hitting points, colors and pose coordinate values in the octomap datasets (e.g. to use octomap datasets in MATLAB). The datasets I am talking about are available in this link . The dataset are in the form of .ot, .bt and .graph files. It says that .graph files contain raw sensor readings at registered poses in a binary format. You can convert them to .bt and .ot (the final occupancy map format).

How can I have access to the point and color information? I mean to have them (hitting points, colors and pose coordinate) in the from of a text file or something like that.

2014-10-02 11:15:50 -0500 received badge  Famous Question (source)
2014-10-01 09:08:02 -0500 commented answer A MATLAB guy wants to do a project in ROS

Yes. I want to use ROS. Thank you for you useful information. I will have more questions to ask, ...

2014-09-30 20:09:07 -0500 received badge  Notable Question (source)
2014-09-30 14:59:50 -0500 received badge  Popular Question (source)
2014-09-30 12:02:12 -0500 asked a question A MATLAB guy wants to do a project in ROS

Background + Objective!: I am a MATLAB/Computer Vision guy and I want to start to write a some piece of useful code in ROS. I have a basic understanding of ROS (topic, node, message ...). What I want to do is to write a 3D version of local occupancy grid map in 5-6 months (It will be as a part of my PhD thesis). Result of 2d version of local occupancy grid map that I have done in MATLAB is available in here: Link

Problems!: The problem is ROS is a bit confusing for me. Maybe because of the lack of my skills in ROS and CPP. In my view MATLAB is a small body with huge amount of muscles (lots of codes, toolboxes and a great source of helps for writing small project) and ROS has a just big skeleton (very good structured for making big/real projects) and building every chunk of muscle for filling this skeleton will needs a lots of time and efforts... . Most of my questions are regarding programming skills in CPP and ROS. Some one please give me a big picture of what should I do:

  • Is it possible to directly write/implement a medium size cpp project in ROS or should I use an ide? e.g. Qt creator, Eclipse ...
  • how can I debug my codes in ROS?
  • how can I visualize 3D grids in ROS/CPP?

P.S. I will add more questions later.

2014-09-11 11:44:00 -0500 received badge  Notable Question (source)
2014-09-11 10:42:22 -0500 answered a question Current map provided with laser scan

Thank you SaiHV. Should I write your piece of code in a launch file? I tried to launch the following launch file but it fail.

faketf.launch:

<launch>

<node pkg="tf" type="static_transform_publisher" name="base_to_laser_tf" args="0 0 0 0 0 0 base_link laser 100"/>

</launch>

and this is the error:

Usage: rosrun PACKAGE EXECUTABLE [ARGS]

rosrun will locate PACKAGE and try to find

an executable named EXECUTABLE in the PACKAGE tree.

If it finds it, it will run it with ARGS.