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

Mork's profile - activity

2022-12-13 12:11:49 -0500 received badge  Notable Question (source)
2022-12-13 12:11:49 -0500 received badge  Famous Question (source)
2022-03-31 11:21:30 -0500 received badge  Popular Question (source)
2021-12-12 19:48:33 -0500 received badge  Student (source)
2021-12-12 11:09:42 -0500 received badge  Supporter (source)
2021-12-12 11:09:34 -0500 commented answer Get object color though python PlanningSceneInterface

Thanks for clarification, PR was made :) https://github.com/ros-planning/moveit/pull/2991

2021-11-06 05:07:59 -0500 asked a question Get object color though python PlanningSceneInterface

Get object color though python PlanningSceneInterface I have implemented a custom object detection node which publishes

2021-02-21 15:41:47 -0500 received badge  Famous Question (source)
2021-02-21 15:41:47 -0500 received badge  Notable Question (source)
2020-09-28 12:03:21 -0500 received badge  Enthusiast
2020-09-24 03:51:50 -0500 commented question laser_scan_matcher with YDLidar

It causes some problems when performing SLAM (e.g. with gmapping), since new walls "apper" on the map when turning direc

2020-09-24 03:45:40 -0500 commented answer How to deal with slow RPLidar scan rate on fast moving robot?

Thank you for sharing, I'll look into it!

2020-09-24 03:45:40 -0500 received badge  Commentator
2020-09-22 01:11:22 -0500 received badge  Popular Question (source)
2020-09-21 02:12:23 -0500 commented answer How to deal with slow RPLidar scan rate on fast moving robot?

@nettercm Could you provide some code for your skew compensation solution please? I think this might help a lot of users

2020-09-21 01:52:14 -0500 commented question laser_scan_matcher with YDLidar

So you think that the whole scan itself is kind of skewed? My lidar has a rotation frequency of about 7Hz. Now it kind o

2020-09-20 04:52:10 -0500 received badge  Editor (source)
2020-09-20 04:52:10 -0500 edited question laser_scan_matcher with YDLidar

laser_scan_matcher with YDLidar Hello fellow ROS users, I'm trying to use the laser_scan_matcher together with a YDLida

2020-09-20 04:51:30 -0500 asked a question laser_scan_matcher with YDLidar

laser_scan_matcher with YDLidar Hello fellow ROS users, I'm trying to use the laser_scan_matcher together with a YDLida

2020-04-28 09:47:36 -0500 commented question How can I make my robot move like a robot with mecanum wheels

Does your robot properly respond to the lateral part (y coordinate) in the twist message, i.e. is it generally capable t

2020-03-27 04:53:42 -0500 commented question [solved] help needed: move_base planner not publishing

Also, could you attach the logs after setting a goal in rviz?

2020-03-27 04:52:45 -0500 commented question [solved] help needed: move_base planner not publishing

Usually no plan is published when path planning failed. From the video it looks like you are setting the goal pretty clo

2016-07-05 02:53:05 -0500 received badge  Famous Question (source)
2016-05-06 08:56:08 -0500 received badge  Notable Question (source)
2016-04-06 10:10:41 -0500 commented answer Rviz moveit plugin show current robot state

That was it, the problem is solved, thank you!

2016-04-06 08:33:27 -0500 received badge  Popular Question (source)
2016-04-06 05:05:25 -0500 commented question Rviz moveit plugin show current robot state

Thanks a lot, that was it!!

2016-04-05 19:03:13 -0500 commented answer What shall I do after installing the navigation stack?

You need something what can deliver similar data like a laser scanner. I don't think a single IR sensor will make it. Try to get a second hand kinect online (e.g. ebay), they aren't that expensive.

2016-04-03 22:11:36 -0500 received badge  Teacher (source)
2016-04-03 08:47:38 -0500 answered a question What shall I do after installing the navigation stack?

I assume you have a self made robot or something. The gmapping and amcl (for localization only) need 3 thinks to work: - Odometry - Laser scans (can also be fake laser scans) - Transformations from the laser scan to the global position as measured by the motor encoders (which later will be corrected by the localization)

You have to figure out by your own how to code it for your robot in particular. A good starting point are the tutorials at Navigation tutorials.

What kind of sonar do you use? A single sonar sensor won't make it, you need to fake a laser scanner with at least 20-30 directions. Maybe a Kinect or a similar sensor would be a better choice.

2016-04-01 10:49:04 -0500 commented question Rviz moveit plugin show current robot state

I think so, since the Start and Goal states are green/orange and the actual robot model is gray, isn't it?

Btw. when we publish the joint states, we leave the header.frame_id and the velocity/effort arrays empty. Is that ok?

2016-04-01 10:04:16 -0500 asked a question Rviz moveit plugin show current robot state

Hey,

we are trying to integrate our custom robot into the Moveit! framework. We are able to create and execute plans on the real robot using the rviz moveit motion planning plugin.

However, the shown robot state is not updated live in Rviz. When we manually move the robot, the visual representation in Rviz does not move at all, although the joint states are published correctly. We have to reset Rviz or the plugin to make it show the current state. I.e. it looks like it's taking a snapshot of the robot state at rviz startup and doesn't update it later.

If we activate the Robot Model plugin in Rviz, the shown representation moves correctly according to the real robot movement.

Are we doing something wrong or is the Rviz moveit plugin somehow assuming that the robot can only be moved by trajectory commands?

Best regards Mark