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

SancheZ's profile - activity

2020-02-10 09:36:10 -0500 received badge  Famous Question (source)
2020-02-10 09:36:10 -0500 received badge  Notable Question (source)
2020-02-10 09:36:10 -0500 received badge  Popular Question (source)
2019-04-18 15:02:37 -0500 received badge  Famous Question (source)
2019-04-18 15:02:37 -0500 received badge  Notable Question (source)
2019-04-18 15:02:37 -0500 received badge  Popular Question (source)
2019-02-18 04:31:48 -0500 received badge  Student (source)
2018-11-08 02:31:10 -0500 received badge  Famous Question (source)
2018-07-30 15:48:19 -0500 received badge  Notable Question (source)
2018-07-30 15:48:19 -0500 received badge  Popular Question (source)
2018-07-24 12:58:46 -0500 received badge  Famous Question (source)
2018-06-18 06:33:20 -0500 marked best answer Openni Kinect V1 default parameters

Hi, I'm trying to evaluate if a certain point in the map frame is or isn't visible to robot. In order to do so, with the camera angles of view and the robot pose, I can verify if that point is in the camera field of view. But that point, at some views, can be also occluded with something that is on front of it. To verify that I need to check the depth of the pixel where that point would be. If its lower than the depth to that point it is a sign that that point is occluded by something... To perform these transformation from point-> pixel and to verify the field of view I need the intrinsic parameters of my Kinect V1. I don't want to perform a new calibration, since the kinect with the default values seems to be working pretty fine.

When I launch openni I receive the following messages:

[ WARN] [1529322621.477102624]: Camera calibration file /home/some1/.ros/camera_info/rgb_A00362803930039A.yaml not found.
[ WARN] [1529322621.477189197]: Using default parameters for RGB camera calibration.
[ WARN] [1529322621.477267591]: Camera calibration file /home/some1/.ros/camera_info/depth_A00362803930039A.yaml not found.
[ WARN] [1529322621.477340809]: Using default parameters for IR camera calibration.

I don't mind using the default camera parameters, I just need to know them to do my calculations. Do you know where are stored or defined the default kinect v1 parameters that openni is using?

2018-06-18 06:27:26 -0500 answered a question Openni Kinect V1 default parameters

Sorry guys, took about 15 minutes after making this post to found the solution. There's a type of message: sensor_msgs/C

2018-06-18 06:08:34 -0500 asked a question Openni Kinect V1 default parameters

Openni Kinect V1 default parameters Hi, I'm trying to evaluate if a certain point in the map frame is or isn't visible t

2018-06-07 12:52:31 -0500 received badge  Enthusiast
2018-06-05 09:12:17 -0500 marked best answer Verify if world point is in camera's field of view

Hi, I'm trying to verify if a point in the world is in the field of view of the Kinect that I'm using. I have the coordinates of that point in the world (x,y,z), afterwards I can transform that point to the camera_depth_optical_frame using something like:


transform = self.tf_buffer.lookup_transform('camera_depth_optical_frame', 'map', rospy.Time(0), rospy.Duratio(1.0))
object_on_camera = tf2_geometry_msgs.do_transform_pose(object_on_world, transform) #point on camera_depth_optical_frame
Notice that "object_on_world" and "object_on_camera" are PointStamped structures. Given that point, how can I know if the camera should be seeing it or not? I think I need to get the horizontal angle and the vertical angle that this point is doing with the camera using the depth 'z', right? Then i need to verify if that lays in the accepted angles for the fov. But how do i get these angles using the camera_depth_optical_frame? I'm using openni for the kinect v1 drivers. Another thing, anyone knows the kinect v1 field of view exactly?

Thanks for your patience, SancheZ

2018-06-05 09:12:17 -0500 received badge  Scholar (source)
2018-06-05 09:12:13 -0500 received badge  Supporter (source)
2018-06-05 09:12:10 -0500 received badge  Notable Question (source)
2018-06-05 08:55:44 -0500 edited answer Verify if world point is in camera's field of view

I was able to check if the objects are in the field of view, using the approach that I mentioned above. I project the ob

2018-06-05 08:55:22 -0500 edited answer Verify if world point is in camera's field of view

I was able to check if the objects are in the field of view, using the approach that I mentioned above. I project the ob

2018-06-05 08:51:45 -0500 edited answer Verify if world point is in camera's field of view

I was able to check if the objects are in the field of view, using the approach that I mentioned above. I project the ob

2018-06-05 08:50:47 -0500 answered a question Verify if world point is in camera's field of view

I was able to check if the objects are in the field of view, using the approach that I mentioned above. I project the ob

2018-06-04 15:31:57 -0500 received badge  Popular Question (source)
2018-06-04 09:56:36 -0500 edited question Verify if world point is in camera's field of view

Verify if world point is in camera's field of view Hi, I'm trying to verify if a point in the world is in the field of v

2018-06-04 09:56:09 -0500 edited question Verify if world point is in camera's field of view

Verify if world point is in camera's field of view Hi, I'm trying to verify if a point in the world is in the field of v

2018-06-04 09:54:26 -0500 asked a question Verify if world point is in camera's field of view

Verify if world point is in camera's field of view Hi, I'm trying to verify if a point in the world is in the field of v

2018-05-21 08:56:29 -0500 edited question Slow pointcloud topic rate with openni_launch

Openni Launch Hi, I'm working on a object and scene recognition framework that uses deep learning methods. The robot is

2018-05-21 08:56:29 -0500 received badge  Editor (source)
2018-05-21 08:55:44 -0500 edited question Slow pointcloud topic rate with openni_launch

Openni Launch Hi, I'm working on a object and scene recognition framework that uses deep learning methods. The robot is

2018-05-21 08:54:40 -0500 asked a question Slow pointcloud topic rate with openni_launch

Openni Launch Hi, I'm working on a object and scene recognition framework that uses deep learning methods. The robot is

2018-04-30 13:15:54 -0500 asked a question PointCloud2 read_points unpack_from problem

PointCloud2 read_points unpack_from problem Hey, I'm working on a object recognition framework that uses deep learning m