00001 /********************************************************************* 00002 * Software License Agreement (BSD License) 00003 * 00004 * Copyright (c) 2012, Willow Garage, Inc. 00005 * All rights reserved. 00006 * 00007 * Redistribution and use in source and binary forms, with or without 00008 * modification, are permitted provided that the following conditions 00009 * are met: 00010 * 00011 * * Redistributions of source code must retain the above copyright 00012 * notice, this list of conditions and the following disclaimer. 00013 * * Redistributions in binary form must reproduce the above 00014 * copyright notice, this list of conditions and the following 00015 * disclaimer in the documentation and/or other materials provided 00016 * with the distribution. 00017 * * Neither the name of the Willow Garage nor the names of its 00018 * contributors may be used to endorse or promote products derived 00019 * from this software without specific prior written permission. 00020 * 00021 * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS 00022 * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT 00023 * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS 00024 * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE 00025 * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, 00026 * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, 00027 * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; 00028 * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER 00029 * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT 00030 * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN 00031 * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE 00032 * POSSIBILITY OF SUCH DAMAGE. 00033 *********************************************************************/ 00034 00035 00036 #include "image_cb_detector/depth_to_pointcloud.h" 00037 00038 00039 00040 DepthToPointCloud::DepthToPointCloud() 00041 { 00042 // TODO Auto-generated constructor stub 00043 00044 } 00045 00046 DepthToPointCloud::~DepthToPointCloud() 00047 { 00048 // TODO Auto-generated destructor stub 00049 } 00050 00051 void DepthToPointCloud::initialize(sensor_msgs::ImageConstPtr depth_msg, 00052 sensor_msgs::CameraInfoConstPtr camera_info_msg) 00053 { 00054 if (!depth_msg || !camera_info_msg) 00055 { 00056 return; 00057 } 00058 00059 std::size_t width = depth_msg->width; 00060 std::size_t height = depth_msg->height; 00061 00062 if (width != projection_map_x_.size() || height !=projection_map_y_.size()) 00063 { 00064 // Procompute 3D projection matrix 00065 // 00066 // The following computation of center_x,y and fx,fy duplicates 00067 // code in the image_geometry package, but this avoids dependency 00068 // on OpenCV, which simplifies releasing rviz. 00069 00070 // Use correct principal point from calibration 00071 float center_x = camera_info_msg->P[2] - camera_info_msg->roi.x_offset; 00072 float center_y = camera_info_msg->P[6] - camera_info_msg->roi.y_offset; 00073 00074 // Combine unit conversion (if necessary) with scaling by focal length for computing (X,Y) 00075 double scale_x = camera_info_msg->binning_x > 1 ? (1.0 / camera_info_msg->binning_x) : 1.0; 00076 double scale_y = camera_info_msg->binning_y > 1 ? (1.0 / camera_info_msg->binning_y) : 1.0; 00077 00078 double fx = camera_info_msg->P[0] * scale_x; 00079 double fy = camera_info_msg->P[5] * scale_y; 00080 00081 float constant_x = 1.0f / fx; 00082 float constant_y = 1.0f / fy; 00083 00084 projection_map_x_.resize(width); 00085 projection_map_y_.resize(height); 00086 std::vector<float>::iterator projX = projection_map_x_.begin(); 00087 std::vector<float>::iterator projY = projection_map_y_.begin(); 00088 00089 // precompute 3D projection matrix 00090 for (int v = 0; v < height; ++v, ++projY) 00091 *projY = (v - center_y) * constant_y; 00092 00093 for (int u = 0; u < width; ++u, ++projX) 00094 *projX = (u - center_x) * constant_x; 00095 } 00096 } 00097