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

Sotte17's profile - activity

2022-01-18 12:04:39 -0500 marked best answer How to publish tf between base_link camera

I want to publish Transform between camera and base_link. But i am not able to please help and I have seen the predefined packages but since I use ROS kinetic I cannot use those.

I have done this till now

import rospy
from nav_msgs.msg import Odometry
import tf
#import turtlesim.msg

def func1(msg, name):
    br = tf.TransformBroadcaster()
    br.sendTransform((0,0,0),
                     tf.transformations.quaternion_from_euler(0, 0, 0),
                     rospy.Time.now(),name,
                     "base_link")

if __name__ == '__main__':
    rospy.init_node('optical_cam_transform_publisher')
    cam_frame="optical_came_frame"
    #odom=Odometry()
    rospy.Subscriber('/odom',
                     Odometry,
                     func1,cam_frame
                     )
    rospy.spin()
2020-02-20 04:09:57 -0500 received badge  Famous Question (source)
2020-02-20 04:09:57 -0500 received badge  Notable Question (source)
2019-08-29 11:55:03 -0500 received badge  Famous Question (source)
2019-04-29 10:27:32 -0500 received badge  Famous Question (source)
2019-03-28 01:17:05 -0500 received badge  Notable Question (source)
2019-03-25 23:15:27 -0500 received badge  Notable Question (source)
2019-03-23 13:15:18 -0500 commented answer How to publish tf between base_link camera

What is the difference between this method and robot_state_publisher method for publishing transform. Are both of them n

2019-03-21 02:43:50 -0500 commented answer How to publish tf between base_link camera

Can you tell me what is wrong in my previous code because it is not broadcasting any transform

2019-03-21 02:13:03 -0500 received badge  Popular Question (source)
2019-03-20 12:30:30 -0500 edited question How to publish tf between base_link camera

How to publish tf between base_link camera I want to publish Transform between camera and base_link. But i am not able t

2019-03-20 12:29:40 -0500 asked a question How to publish tf between base_link camera

How to publish tf between base_link camera I want to publish Transform between camera and base_link. But i am not able t

2019-03-20 12:25:08 -0500 received badge  Popular Question (source)
2019-03-20 12:24:59 -0500 received badge  Popular Question (source)
2019-03-17 11:32:33 -0500 received badge  Enthusiast
2019-03-15 01:37:12 -0500 commented question How to generate 3d image from a single 2d image using backprojection of pixels

Well I saw a video on YouTube but It wasn't clear to me. Then I saw some other documents like then opencv documentation

2019-03-14 17:04:28 -0500 commented question How to generate 3d image from a single 2d image using backprojection of pixels

I haven't tried much till now but I have seen a lot of resources like how they are implementing in this GitHub code http

2019-03-14 11:43:28 -0500 asked a question How to generate 3d image from a single 2d image using backprojection of pixels

How to generate 3d image from a single 2d image using backprojection of pixels I have a 2d binary image of segmented lan

2019-03-12 09:17:53 -0500 edited question I have a binary 2d image I want to publish it on point cloud

I have a binary 2d image I want to publish it on point cloud I'm working on lane detection and I have a binary image of

2019-03-12 09:17:53 -0500 received badge  Editor (source)
2019-03-12 09:17:38 -0500 edited question I have a binary 2d image I want to publish it on point cloud

I have a binary 2d image I want to publish it on point cloud I'm working on lane detection and I have a binary image of

2019-03-12 09:15:01 -0500 commented question I have a binary 2d image I want to publish it on point cloud

Yea I'm going to assume it's a flat plane and do a pinhole projection but I do not know how to proceed with this.

2019-03-12 03:49:58 -0500 asked a question I have a binary 2d image I want to publish it on point cloud

I have a binary 2d image I want to publish it on point cloud I'm working on lane detection and I have a binary image of