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

ia's profile - activity

2022-07-18 17:35:07 -0500 received badge  Famous Question (source)
2022-07-18 17:35:07 -0500 received badge  Notable Question (source)
2022-05-09 01:05:21 -0500 received badge  Famous Question (source)
2022-03-01 08:18:30 -0500 received badge  Student (source)
2022-03-01 08:18:24 -0500 received badge  Notable Question (source)
2022-03-01 08:18:24 -0500 received badge  Popular Question (source)
2022-02-18 09:16:31 -0500 received badge  Famous Question (source)
2022-02-18 09:16:31 -0500 received badge  Notable Question (source)
2022-02-18 09:16:31 -0500 received badge  Popular Question (source)
2021-06-28 01:24:35 -0500 received badge  Famous Question (source)
2021-05-06 03:01:45 -0500 received badge  Notable Question (source)
2021-05-06 03:01:45 -0500 received badge  Popular Question (source)
2021-04-25 12:41:44 -0500 commented answer What does projection matrix provided by the calibration represent?

@Malefitz @lucasW but how can alpha be set when running the camera_calibration ros node? Seems odd they didn't provide a

2021-04-11 10:09:58 -0500 commented answer What is ConstPtr&?

@ahendrix but why do some message type look like sensor_msgs::ImageConstPtr and others need colons like: automotive_plat

2021-04-11 10:09:04 -0500 commented answer What is ConstPtr&?

@ahendrix but why do some message type look like sensor_msgs::ImageConstPtr and others need colons like: automotive_plat

2021-03-19 11:47:00 -0500 commented question errors while using cache filter in message_filters

@Spartan_007 did you ever figure this out? I'm wondering if you need to use PointCloud2ConstPtr instead for your callbac

2021-03-19 11:38:32 -0500 commented question errors while using cache filter in message_filters

@Spartan_007 did you ever figure this out? I'm wondering if you need to use PointCloud2ConstPtr instead.

2021-03-01 09:59:25 -0500 edited question Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error)

Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error) I had this exact problem when building PCL from

2021-03-01 09:59:17 -0500 edited question Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error)

Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error) I had this exact problem when building PCL from

2021-03-01 09:59:01 -0500 edited question Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error)

Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error) I had this exact problem when building PCL from

2021-03-01 09:50:39 -0500 edited question Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error)

Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error) I had this exact problem when building PCL from

2021-03-01 09:50:35 -0500 edited question Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error)

Compiling PCL from source for multiple ros nodes I had this exact problem when building PCL from source (in order to act

2021-03-01 09:13:32 -0500 edited question Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error)

Compiling PCL from source for multiple ros nodes I had this exact problem when building PCL from source (in order to act

2021-03-01 09:08:37 -0500 commented answer Problem with PCL using ROS indigo

@ZainMehdi sorry I know this is an old post, but your suggestion works until I try to compile multiple ros packages from

2021-03-01 09:08:07 -0500 asked a question Compiling PCL from source for multiple ros nodes (pcl_ros_gencfg error)

Compiling PCL from source for multiple ros nodes I had this exact problem and the answer in that link works perfectly.

2021-03-01 09:04:01 -0500 commented answer Problem with PCL using ROS indigo

@ZainMehdi sorry I know this is an old post, but your suggestion works until I try to compile multiple ros packages from

2021-03-01 07:58:03 -0500 received badge  Notable Question (source)
2021-02-26 15:17:48 -0500 asked a question rostest include ros node as dependency

rostest include ros node as dependency How do you include a ros node in your ROS_WS/src directory into your rostest unit

2021-02-18 11:39:49 -0500 marked best answer How to Fuse or Merge PointClouds Efficiently?

I have a stereo camera that gives me an X,Y,Z point for each pixel in the image. I detect an object in the image using an algorithm and get a bounding box. I then have a radar that also gives me detected targets with x,y,z track points. It would be very inefficient to merge (using ros_pcl) each and every xyz point from the stereo camera with the radar track points.

If the stereo camera and radar were co-located, I'd just trust that xyz points from the camera line up with xyz points with the radar, but actually the camera is several feet above and behind the radar, and as a result I need some math performed to convert the detected object in the image's xyz point to the equivalent xyz point relative to the radar.

So is there a ROS node that can take a displacement vector, describing the offset between two sensors, and transform the xyz points of one sensor to the other?

This would allow me to confirm the position of the detected object in the image with the position the radar reports. For example, in the simplest case let's pretend the stereo camera is precisely 1 meter directly behind the radar. If the camera reports a detected object is 15 meters away directly in front, then this transform I'm looking for would report that the object is actually 14 meters away - so that the end result is relative to the radar instead of the camera. Now I can precisely confirm: Does the radar also measure the object is 14 meters away?

I think tf2 will allow me to offset the camera x,y,z points, but unfortunately the distances would still read "15 meters" per my example above. Is there a node that will not only offset but subtract the distance between the two sensors, to get 15 - 1 = 14 meters?

2021-02-18 11:39:49 -0500 received badge  Scholar (source)
2021-02-18 11:39:11 -0500 commented question subscribe image slow on rospy with python3 and melodic

I lowered the image resolution (using image_proc) down to less than half the original on my laptop, which has a much bet

2021-02-18 11:35:09 -0500 asked a question tf2 TF error: [, when looking up transform

tf2 TF error: [, when looking up transform I am getting a blank error when using TF2 for a command that otherwise works

2021-02-17 12:01:16 -0500 received badge  Popular Question (source)
2021-02-12 19:20:51 -0500 commented answer How to Fuse or Merge PointClouds Efficiently?

Thank you again, I hadn't heard of eigen, but you're also right about static placement too and I think where I was mista

2021-02-12 16:49:57 -0500 commented answer How to Fuse or Merge PointClouds Efficiently?

I greatly appreciate your response, but my issue with tf2 is that it applies to the entire pointcloud, which as I mentio

2021-02-12 12:42:16 -0500 edited question How to Fuse or Merge PointClouds Efficiently?

How to Fuse or Merge PointClouds Efficiently? I have a stereo camera that gives me an X,Y,Z point for each pixel in the

2021-02-12 12:36:33 -0500 edited question How to Fuse or Merge PointClouds Efficiently?

How to Fuse or Merge PointClouds Efficiently? I have a stereo camera that gives me an X,Y,Z point for each pixel in the

2021-02-12 12:22:35 -0500 asked a question How to Fuse or Merge PointClouds Efficiently?

How to Fuse or Merge PointClouds Efficiently? I have a stereo camera that gives me an X,Y,Z point for each pixel in the

2021-02-04 14:56:38 -0500 received badge  Popular Question (source)
2021-02-04 10:27:35 -0500 received badge  Self-Learner (source)
2021-02-04 10:27:35 -0500 received badge  Teacher (source)
2021-02-04 10:25:29 -0500 edited answer subscribe image slow on rospy with python3 and melodic

I lowered the image resolution (using image_proc) down to less than half the original and converted to grayscale (mono)

2021-02-04 10:24:14 -0500 answered a question subscribe image slow on rospy with python3 and melodic

I lowered the image resolution (using image_proc) down to less than half the original and my FPS jumped >15! So yes,

2021-02-01 16:58:57 -0500 edited question subscribe image slow on rospy with python3 and melodic

subscribe image slow on rospy with python3 and melodic I've seen several issues posted about rospy being slow to subscri

2021-02-01 16:58:07 -0500 edited question subscribe image slow on rospy with python3 and melodic

subscribe image slow on rospy with python3 and melodic I've seen several issues posted about rospy being slow to subscri

2021-02-01 16:58:07 -0500 received badge  Editor (source)
2021-02-01 09:49:04 -0500 edited question subscribe image slow on rospy with python3 and melodic

subscribe image slow on rospy with python3 and melodic I've seen several issues posted about rospy being slow to subscri

2021-02-01 09:34:10 -0500 asked a question subscribe image slow on rospy with python3 and melodic

subscribe image slow on rospy with python3 and melodic I've seen several issues posted about rospy being slow to subscri

2021-01-14 09:21:32 -0500 received badge  Supporter (source)
2021-01-14 08:59:15 -0500 received badge  Enthusiast