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

sharky's profile - activity

2021-05-19 09:31:15 -0500 received badge  Nice Answer (source)
2020-12-21 23:05:04 -0500 answered a question How can I improve the accuracy of aruco detection?

Moving camera can lead to blurring of images, which could lead to bad or no detections. Try a camera with better frame r

2014-09-30 19:06:02 -0500 received badge  Teacher (source)
2014-09-30 19:06:02 -0500 received badge  Necromancer (source)
2014-02-28 04:10:21 -0500 received badge  Editor (source)
2014-02-28 04:04:10 -0500 commented question Cannot visualize depth image from turtlebot simulator

did you try rviz for visualization??

2014-02-28 04:00:47 -0500 answered a question Mapping between pointcloud and image

what is the source of your data? if you have the camera parameters i.e K matrix or M matrix you could simply find the 2d point(image point) by

p = K[R|T] * P

P being your 3d point and and R and T are your camera rotation and translation.see camera calibration for finding out your camera parameters and the viewpoint is usually stored in the pointcloud header.

if the camera is not available and you have a 3d point for every image point( highly unlikely unless it is a synthetic dataset) you could find the 3d to 2d relation using the image edges and corresponding 3d points (given the viewpoint you can find out the extreme end points in your 3d data, join the 3d point and camera center those with maximum angle should correspond to image end points). then use svd or any other method( min 6 points) (known to have some error).

also you could try to add random colors to your points (using pcl::pointXYZRGB) and then convert it to image, once you have the image match it to the original image and find the original colors(doubt that'll work but you can give it a try)

good luck

2013-12-01 16:16:30 -0500 answered a question ROS pcl run-time error segmenting planes

pcl::PointCloud<pcl::pointxyz>::Ptr output_p(new pcl::PointCloud<pcl::pointxyz>);

That did it for me :)