Point Cloud Library (PCL)  1.6.0
 All Classes Namespaces Files Functions Variables Typedefs Enumerations Enumerator Friends Macros Groups Pages
openni_image.h
Go to the documentation of this file.
1 /*
2  * Software License Agreement (BSD License)
3  *
4  * Copyright (c) 2011 Willow Garage, Inc.
5  *
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  *
12  * * Redistributions of source code must retain the above copyright
13  * notice, this list of conditions and the following disclaimer.
14  * * Redistributions in binary form must reproduce the above
15  * copyright notice, this list of conditions and the following
16  * disclaimer in the documentation and/or other materials provided
17  * with the distribution.
18  * * Neither the name of Willow Garage, Inc. nor the names of its
19  * contributors may be used to endorse or promote products derived
20  * from this software without specific prior written permission.
21  *
22  * THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
23  * "AS IS" AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
24  * LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS
25  * FOR A PARTICULAR PURPOSE ARE DISCLAIMED. IN NO EVENT SHALL THE
26  * COPYRIGHT OWNER OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT,
27  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING,
28  * BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES;
29  * LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER
30  * CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT
31  * LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN
32  * ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE
33  * POSSIBILITY OF SUCH DAMAGE.
34  *
35  */
36 #include <pcl/pcl_config.h>
37 #ifdef HAVE_OPENNI
38 
39 #ifndef __OPENNI_IMAGE__
40 #define __OPENNI_IMAGE__
41 
42 #include <XnCppWrapper.h>
43 #include <pcl/pcl_exports.h>
44 #include "openni_exception.h"
45 #include <boost/shared_ptr.hpp>
46 
47 namespace openni_wrapper
48 {
49 
58  class PCL_EXPORTS Image
59  {
60  public:
61  typedef boost::shared_ptr<Image> Ptr;
62  typedef boost::shared_ptr<const Image> ConstPtr;
63 
64  typedef enum
65  {
66  BAYER_GRBG,
67  YUV422,
68  RGB
69  } Encoding;
70 
76  inline Image (boost::shared_ptr<xn::ImageMetaData> image_meta_data) throw ();
77 
82  inline virtual ~Image () throw ();
83 
92  virtual bool isResizingSupported (unsigned input_width, unsigned input_height,
93  unsigned output_width, unsigned output_height) const = 0;
94 
103  virtual void fillRGB (unsigned width, unsigned height, unsigned char* rgb_buffer,
104  unsigned rgb_line_step = 0) const = 0;
105 
111  virtual Encoding getEncoding () const = 0;
112 
118  inline void
119  fillRaw (unsigned char* rgb_buffer) const throw ()
120  {
121  memcpy (rgb_buffer, image_md_->Data (), image_md_->DataSize ());
122  }
123 
132  virtual void fillGrayscale (unsigned width, unsigned height, unsigned char* gray_buffer,
133  unsigned gray_line_step = 0) const = 0;
134 
139  inline unsigned getWidth () const throw ();
140 
145  inline unsigned getHeight () const throw ();
146 
152  inline unsigned getFrameID () const throw ();
153 
159  inline unsigned long getTimeStamp () const throw ();
160 
165  inline const xn::ImageMetaData& getMetaData () const throw ();
166 
167  protected:
168  boost::shared_ptr<xn::ImageMetaData> image_md_;
169  } ;
170 
171  Image::Image (boost::shared_ptr<xn::ImageMetaData> image_meta_data) throw ()
172  : image_md_ (image_meta_data)
173  {
174  }
175 
176  Image::~Image () throw () { }
177 
178  unsigned
179  Image::getWidth () const throw ()
180  {
181  return image_md_->XRes ();
182  }
183 
184  unsigned
185  Image::getHeight () const throw ()
186  {
187  return image_md_->YRes ();
188  }
189 
190  unsigned
191  Image::getFrameID () const throw ()
192  {
193  return image_md_->FrameID ();
194  }
195 
196  unsigned long
197  Image::getTimeStamp () const throw ()
198  {
199  return static_cast<unsigned long> (image_md_->Timestamp ());
200  }
201 
202  const xn::ImageMetaData&
203  Image::getMetaData () const throw ()
204  {
205  return *image_md_;
206  }
207 } // namespace
208 #endif
209 #endif //__OPENNI_IMAGE__