Go to the documentation of this file.00001
00002
00003
00004
00005
00006
00007
00008
00009
00010
00011
00012
00013
00014
00015
00016
00017
00018
00019
00020
00021
00022
00023
00024
00025
00026
00027
00028
00029
00030
00031
00032
00033
00034 #include "depth_publisher.h"
00035
00036 #include <rc_genicam_api/pixel_formats.h>
00037
00038 #include <sensor_msgs/image_encodings.h>
00039
00040 namespace rc
00041 {
00042
00043 DepthPublisher::DepthPublisher(ros::NodeHandle &nh, std::string frame_id_prefix,
00044 double f, double t, double _scale)
00045 : GenICam2RosPublisher(frame_id_prefix)
00046 {
00047 scale=f*t/_scale;
00048
00049 pub=nh.advertise<sensor_msgs::Image>("depth", 1);
00050 }
00051
00052 bool DepthPublisher::used()
00053 {
00054 return pub.getNumSubscribers() > 0;
00055 }
00056
00057 void DepthPublisher::publish(const rcg::Buffer *buffer, uint64_t pixelformat)
00058 {
00059 if (pub.getNumSubscribers() > 0 && pixelformat == Coord3D_C16)
00060 {
00061
00062
00063 sensor_msgs::ImagePtr im=boost::make_shared<sensor_msgs::Image>();
00064
00065 const uint64_t freq=1000000000ul;
00066 uint64_t time=buffer->getTimestampNS();
00067
00068 im->header.seq=seq++;
00069 im->header.stamp.sec=time/freq;
00070 im->header.stamp.nsec=time-freq*im->header.stamp.sec;
00071 im->header.frame_id=frame_id;
00072
00073
00074
00075 im->width=static_cast<uint32_t>(buffer->getWidth());
00076 im->height=static_cast<uint32_t>(buffer->getHeight());
00077
00078
00079
00080 size_t px=buffer->getXPadding();
00081 const uint8_t *ps=static_cast<const uint8_t *>(buffer->getBase())+buffer->getImageOffset();
00082
00083
00084
00085 im->encoding=sensor_msgs::image_encodings::TYPE_32FC1;
00086 im->is_bigendian=rcg::isHostBigEndian();
00087 im->step=im->width*sizeof(float);
00088
00089 im->data.resize(im->step*im->height);
00090 float *pt=reinterpret_cast<float *>(&im->data[0]);
00091
00092 bool bigendian=buffer->isBigEndian();
00093
00094 float s=scale*im->width;
00095
00096 for (uint32_t k=0; k<im->height; k++)
00097 {
00098 for (uint32_t i=0; i<im->width; i++)
00099 {
00100 uint16_t d;
00101
00102 if (bigendian)
00103 {
00104 d=(ps[0]<<8)|ps[1];
00105 }
00106 else
00107 {
00108 d=(ps[1]<<8)|ps[0];
00109 }
00110
00111 ps+=2;
00112
00113 if (d != 0)
00114 {
00115 *pt++=s/d;
00116 }
00117 else
00118 {
00119 *pt++=std::numeric_limits<float>::quiet_NaN();
00120 }
00121 }
00122
00123 ps+=px;
00124 }
00125
00126
00127
00128 pub.publish(im);
00129 }
00130 }
00131
00132 }