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

TenderTadpole7's profile - activity

2022-09-10 23:07:41 -0500 received badge  Taxonomist
2021-08-01 01:48:33 -0500 received badge  Student (source)
2021-08-01 01:44:38 -0500 received badge  Teacher (source)
2021-08-01 01:44:38 -0500 received badge  Self-Learner (source)
2020-11-04 05:59:38 -0500 received badge  Famous Question (source)
2020-09-16 21:19:16 -0500 received badge  Famous Question (source)
2020-06-04 05:05:01 -0500 received badge  Notable Question (source)
2020-06-04 05:05:01 -0500 received badge  Popular Question (source)
2020-05-17 15:52:35 -0500 received badge  Famous Question (source)
2020-05-08 01:31:34 -0500 received badge  Notable Question (source)
2020-03-31 09:00:17 -0500 received badge  Notable Question (source)
2020-02-01 01:20:55 -0500 received badge  Popular Question (source)
2020-01-26 23:44:37 -0500 asked a question Pure Pursuit

Pure Pursuit How can i access future points while reading it off a rosbag file to implement pure pursuit on a car

2020-01-22 12:24:02 -0500 commented question Simple Path Tracker

I've tried to use current points and previous points to get vectors and perform dot product on it to get the error for a

2020-01-22 12:17:12 -0500 received badge  Supporter (source)
2020-01-22 12:06:36 -0500 asked a question Simple Path Tracker

Simple Path Tracker I have been a ros bag file with the position of the points the robot(car) is supposed to follow The

2019-12-13 08:40:50 -0500 asked a question Cant import regular python libraries

Cant import regular python libraries I'm trying to use scikit-images implementation of Dijkstra's path planning on a sta

2019-12-12 10:30:52 -0500 received badge  Enthusiast
2019-12-08 19:18:45 -0500 received badge  Popular Question (source)
2019-12-08 11:21:11 -0500 commented answer Can't visualize Pose in Rviz

Thanks for bringing this to my attention, I hadn't noticed that this was in meters

2019-12-08 02:24:01 -0500 marked best answer Can't visualize Pose in Rviz

I'm trying to implement a path planning algorithm on a static image. I have obtained an occupancy grid and have also published a point via geometry_msgs/PoseStamped, but i cannot visualize this on Rviz .

This is the publisher that Ive written

pub = rospy.Publisher('move_base_simple/goal',PoseStamped,queue_size=1)
rospy.init_node('pose_publisher',anonymous = True)
rate = rospy.Rate(1)
while not rospy.is_shutdown():
    p = PoseStamped()
    p.header.seq = 1
    p.header.stamp = rospy.Time.now()
    p.header.frame_id = 'map'
    p.pose.position.x = 100
    p.pose.position.y = 100
    p.pose.position.z = 0
    p.pose.orientation.x = 0
    p.pose.orientation.x = 0
    p.pose.orientation.x = 0
    p.pose.orientation.w = 1
    pub.publish(p)
    rate.sleep()

What am i doing wrong

2019-12-08 02:20:51 -0500 answered a question Can't visualize Pose in Rviz

After increasing the scale of the pose arrow i was able to vizualise it

2019-12-08 02:20:50 -0500 asked a question Can't visualize Pose in Rviz

Can't vizualise Pose in Rviz I'm trying to implement a path planning algorithm on a static image. I have obtained an occ

2019-12-08 00:03:48 -0500 received badge  Rapid Responder (source)
2019-12-06 10:56:30 -0500 asked a question How do I apply global_planner on the occupancy grid generated my map_server

How do I apply global_planner on the occupancy grid generated my map_server Im trying to apply the path planner provided