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

hashirzahir's profile - activity

2022-10-05 05:54:47 -0500 received badge  Nice Answer (source)
2022-09-15 14:25:42 -0500 received badge  Necromancer (source)
2021-06-03 06:47:28 -0500 commented answer How to catkin_make one package

I'm not aware of that. I felt that catkin package had better features than catkin_make for building ROS1 packages. Even

2020-10-26 22:18:51 -0500 received badge  Famous Question (source)
2020-10-26 22:18:51 -0500 received badge  Notable Question (source)
2020-05-14 04:26:53 -0500 commented question move_base not avoiding obstacles

I still dont see your local costmap though. There should be 2 separate costmaps, a large global costmap (black and white

2020-05-14 04:20:39 -0500 commented answer No odometry/filtered output from robot_localization

Load a URDF and use the robot_state_publisher to publish the static transforms. Or just use a simple launch file and add

2020-05-14 03:19:58 -0500 commented question move_base not avoiding obstacles

It would be helpful if you added the screenshot with the obstacle in play. Otherwise it is difficult to debug as I am un

2020-05-13 23:51:39 -0500 commented question move_base not avoiding obstacles

What you have provided so far is great. Could you also provide the local and global costmap layers as well as the paths

2020-05-13 22:15:37 -0500 commented question move_base not avoiding obstacles

Could you share your move base configs (local, global costmap and local planner configs) and maybe a screenshot of why y

2020-05-12 17:22:10 -0500 commented question How to modify move_base minimum velocities?

Hi how did you manage to resolve the DWA planner giving smaller velocity commands than configured in the config file?

2020-05-08 12:00:56 -0500 commented question Testing and tunning imu_filter_madgwick

Have you tried visualizing the raw magnetometer estimates on rqt graph and compare them with the estimate from the Gyro+

2020-05-07 05:47:22 -0500 commented answer 5 sec delay in yaw rate fusing radar and IMU Robot Localization

Wow this is really something new. Most IMU ROS drivers I know publish the IMU message at 100-400Hz. Does this mean that

2020-05-07 05:47:07 -0500 commented answer 5 sec delay in yaw rate fusing radar and IMU Robot Localization

Wow this is really something new. Most IMU ROS drivers I know publish the IMU message at 100-400Hz. Does this mean that

2020-05-07 05:38:02 -0500 commented question Testing and tunning imu_filter_madgwick

Hi I am assuming by using "just IMU data", you are referring to the accelorometer and gyroscope values. Mind you, these

2020-05-04 00:22:18 -0500 commented answer advice for SLAM with 3D lidar

Just my 2 cents about the realsense D435i camera. It is an engineering marvel for a cheap price of ~$200, and the qualit

2020-05-03 22:37:33 -0500 commented answer Difference between DWA local_planner and TEB local_planner

Hi, yes I can definitely verify the rotation problem with DWA planner. It was so hard to get it to perform spot turns an

2020-05-03 22:36:51 -0500 commented answer Difference between DWA local_planner and TEB local_planner

Hi, yes I can definitely verify the rotation problem with DWA planner. It was so hard to get it to perform spot turns an

2020-05-02 09:38:45 -0500 answered a question My teleop node is not very reactive

Hi, I noticed in your cmd_vel subscriber, you have declared a queue size of 1000 messages for the cmd_vel topic. From

2020-05-02 09:38:45 -0500 received badge  Rapid Responder (source)
2020-05-02 01:36:24 -0500 commented question Ros Master-Slave Network is slow because of large amount of network overhead

Hi do you mind updating how the 150mb/s bandwidth was derived? I could see various 40mb/s topics in your terminal screen

2020-04-29 21:54:02 -0500 commented question Ros Master-Slave Network is slow because of large amount of network overhead

Streaming data from the realsense over wifi is generally a bad idea. It is well known that the realsense pumps an insane

2020-04-27 23:15:33 -0500 received badge  Popular Question (source)
2020-04-27 01:39:26 -0500 answered a question d435i realsense and robot_localization

Hi perhaps you want to try SLAM with D435i provided by the intel realsense wiki. This will provide much more accurate od

2020-04-25 09:02:25 -0500 answered a question How to build only a few packages from a repository, instead of all?

Perhaps you can use the catkin build command instead of catkin_make. catkin build allows for building individual package

2020-04-25 09:02:25 -0500 received badge  Rapid Responder (source)
2020-04-25 05:14:39 -0500 commented question Why is Nav-Stack so much buggier with the addition of namespaces?

May be you can add some statistics? I have not heard of this behaviour before. Perhaps you can add frequency of control

2020-04-24 21:39:25 -0500 commented question robot_localization with hector_sim_imu in 3D mode, robot starts flying up

Does it have to do with the imu0_remove_gravitational_acceleration: true? Perhaps you could also include a snippet of th

2020-04-22 23:03:19 -0500 commented question Lightweight alternatives to Gazebo

Yes gazebo can be run with gui:=false if you only want the gazebo server (physics engine and ros bridge) but not the gaz

2020-04-22 07:26:34 -0500 commented answer Inverse kinematic solver generation/integration in Python

Yes what gvdhoorn says is accurate. I am a ROS developer who uses ROS on a frequent basis for robotic applications. Most

2020-04-22 07:17:47 -0500 commented question Lightweight alternatives to Gazebo

Yeah as gvdhoorn mentioned RVIZ is only a data visualization tool. I would have to say that if you were to only run Gaze

2020-04-20 23:33:22 -0500 received badge  Nice Answer (source)
2020-04-20 21:34:42 -0500 answered a question How to control a physical robot using a web interface

Ya the concept is similar for simulated and real life robots. Just define your architecture and the UI should be able to

2020-04-20 21:34:42 -0500 received badge  Rapid Responder (source)
2020-04-20 21:30:32 -0500 answered a question How to catkin_make one package

I would recommend moving to use catkin build instead of catkin_make. catkin build has a lot more functionalities, and as

2020-04-20 21:25:15 -0500 commented answer How to give goal using robot localization

Please read the documentation on Odometry message. It clearly states what is twist (speed) and pose (position). As long

2020-04-20 09:37:07 -0500 commented answer How to give goal using robot localization

What is the map frame for in your use case? Traditionally, ROS follows map -> odom -> base_link where odom->bas

2020-04-20 07:56:04 -0500 commented answer How to give goal using robot localization

First of all, why do you have 2 nodes <node pkg="robot_localization" type="ekf_localization_node" name="ekf_se_odom

2020-04-20 07:52:02 -0500 commented answer Hardware Requirements ROS + Intel Realsense Depth Camera

Personally having used a Realsense D435i, I have to say there are other considerations as well. We used an intel celeron

2020-04-20 07:42:38 -0500 commented question Benefit from implementing ROS(2) on microcontrollers

Yes in the end it is about your user needs and development time. If you have a longer development time frame, I think bu

2020-04-20 07:33:10 -0500 commented answer How to give goal using robot localization

The robot_localization node should take in 1 or 2 sensor data such as sensor_msgs::IMU from your IMU and maybe nav_msgs:

2020-04-19 23:01:16 -0500 answered a question How to give goal using robot localization

Actual navigation of the robot is handled by move_base. You will give position goals to move_base and move_base will pro

2020-04-19 23:01:16 -0500 received badge  Rapid Responder (source)
2020-04-18 08:00:47 -0500 commented answer Problem with DWA planner, post 0.0 to angular velocity after is posted real speed

Good for you. I generally would avoid ARM based SBCs. I dont think the raspi 4 is that much better (but I personally hav

2020-04-18 04:10:12 -0500 commented answer Problem with DWA planner, post 0.0 to angular velocity after is posted real speed

Yes running only the move base node on the jetson nano should not be a problem. But the nano is not good at handling mul

2020-04-17 11:25:33 -0500 commented answer Problem with DWA planner, post 0.0 to angular velocity after is posted real speed

It would be really helpful if you answered the earlier questions. Please state your use case otherwise it is very hard t

2020-04-17 07:08:36 -0500 received badge  Rapid Responder (source)
2020-04-17 07:08:36 -0500 answered a question Can rtabmap node complete path planning?

I didn't know it was possible until you had asked. Apparently it is supported according to a forum post here I feel the

2020-04-17 06:48:50 -0500 commented answer Problem with DWA planner, post 0.0 to angular velocity after is posted real speed

This is quite a generic question. Perhaps you could state your use case. For example, it you are in a static environment

2020-04-17 06:48:50 -0500 received badge  Commentator