|
Point Cloud Library (PCL) 1.15.1
|
Image class containing just a reference to image meta data. More...
#include <pcl/io/openni_camera/openni_image.h>
Public Types | |
| enum | Encoding { BAYER_GRBG , YUV422 , RGB } |
| using | Ptr = pcl::shared_ptr<Image> |
| using | ConstPtr = pcl::shared_ptr<const Image> |
Public Member Functions | |
| Image (pcl::shared_ptr< xn::ImageMetaData > image_meta_data) noexcept | |
| Constructor. | |
| virtual | ~Image () noexcept |
| virtual Destructor that never throws an exception. | |
| virtual bool | isResizingSupported (unsigned input_width, unsigned input_height, unsigned output_width, unsigned output_height) const =0 |
| virtual void | fillRGB (unsigned width, unsigned height, unsigned char *rgb_buffer, unsigned rgb_line_step=0) const =0 |
| fills a user given buffer with the RGB values, with an optional nearest-neighbor down sampling and an optional subregion | |
| virtual Encoding | getEncoding () const =0 |
| returns the encoding of the native data. | |
| void | fillRaw (unsigned char *rgb_buffer) const noexcept |
| fills a user given buffer with the raw values. | |
| virtual void | fillGrayscale (unsigned width, unsigned height, unsigned char *gray_buffer, unsigned gray_line_step=0) const =0 |
| fills a user given buffer with the gray values, with an optional nearest-neighbor down sampling and an optional subregion | |
| unsigned | getWidth () const noexcept |
| unsigned | getHeight () const noexcept |
| unsigned | getFrameID () const noexcept |
| unsigned long | getTimeStamp () const noexcept |
| const xn::ImageMetaData & | getMetaData () const noexcept |
Protected Attributes | |
| pcl::shared_ptr< xn::ImageMetaData > | image_md_ |
Image class containing just a reference to image meta data.
Thus this class just provides an interface to fill a RGB or Grayscale image buffer.
| [in] | image_meta_data |
Definition at line 58 of file openni_image.h.
| using openni_wrapper::Image::ConstPtr = pcl::shared_ptr<const Image> |
Definition at line 62 of file openni_image.h.
| using openni_wrapper::Image::Ptr = pcl::shared_ptr<Image> |
Definition at line 61 of file openni_image.h.
| Enumerator | |
|---|---|
| BAYER_GRBG | |
| YUV422 | |
| RGB | |
Definition at line 64 of file openni_image.h.
|
inlinenoexcept |
Constructor.
| [in] | image_meta_data | the actual image data from the OpenNI driver |
Definition at line 171 of file openni_image.h.
References Image(), and image_md_.
Referenced by getWidth(), and Image().
|
inlinevirtualdefaultnoexcept |
virtual Destructor that never throws an exception.
|
pure virtual |
fills a user given buffer with the gray values, with an optional nearest-neighbor down sampling and an optional subregion
| [in] | width | desired width of output image. |
| [in] | height | desired height of output image. |
| [in,out] | gray_buffer | the output gray buffer. |
| [in] | gray_line_step | optional line step in bytes to allow the output in a rectangular subregion of the output buffer. |
Implemented in openni_wrapper::ImageBayerGRBG, openni_wrapper::ImageRGB24, and openni_wrapper::ImageYUV422.
References getFrameID(), getHeight(), getMetaData(), getTimeStamp(), and getWidth().
|
inlinenoexcept |
fills a user given buffer with the raw values.
| [in,out] | rgb_buffer |
Definition at line 119 of file openni_image.h.
References fillRaw(), and image_md_.
Referenced by fillRaw().
|
pure virtual |
fills a user given buffer with the RGB values, with an optional nearest-neighbor down sampling and an optional subregion
| [in] | width | desired width of output image. |
| [in] | height | desired height of output image. |
| [in,out] | rgb_buffer | the output RGB buffer. |
| [in] | rgb_line_step | optional line step in bytes to allow the output in a rectangular subregion of the output buffer. |
Implemented in openni_wrapper::ImageBayerGRBG, openni_wrapper::ImageRGB24, and openni_wrapper::ImageYUV422.
References fillRGB().
Referenced by fillRGB().
|
pure virtual |
returns the encoding of the native data.
Implemented in openni_wrapper::ImageBayerGRBG, openni_wrapper::ImageRGB24, and openni_wrapper::ImageYUV422.
References getEncoding().
Referenced by getEncoding().
|
inlinenoexcept |
Definition at line 191 of file openni_image.h.
References getFrameID(), and image_md_.
Referenced by fillGrayscale(), and getFrameID().
|
inlinenoexcept |
Definition at line 185 of file openni_image.h.
References getHeight(), and image_md_.
Referenced by fillGrayscale(), and getHeight().
|
inlinenoexcept |
Definition at line 203 of file openni_image.h.
References getMetaData(), and image_md_.
Referenced by fillGrayscale(), and getMetaData().
|
inlinenoexcept |
Definition at line 197 of file openni_image.h.
References getTimeStamp(), and image_md_.
Referenced by fillGrayscale(), and getTimeStamp().
|
inlinenoexcept |
Definition at line 179 of file openni_image.h.
References getWidth(), Image(), and image_md_.
Referenced by fillGrayscale(), and getWidth().
|
pure virtual |
| [in] | input_width | width of input image |
| [in] | input_height | height of input image |
| [in] | output_width | width of desired output image |
| [in] | output_height | height of desired output image |
Implemented in openni_wrapper::ImageBayerGRBG, openni_wrapper::ImageRGB24, and openni_wrapper::ImageYUV422.
References isResizingSupported().
Referenced by isResizingSupported().
|
protected |
Definition at line 168 of file openni_image.h.
Referenced by fillRaw(), getFrameID(), getHeight(), getMetaData(), getTimeStamp(), getWidth(), and Image().