This class provides methods to fill a RGB or Grayscale image buffer from underlying RGB24 image.
More...
|
| | ImageRGB24 (pcl::shared_ptr< xn::ImageMetaData > image_meta_data) noexcept |
| |
| | ~ImageRGB24 () noexcept |
| |
| Encoding | getEncoding () const override |
| | returns the encoding of the native data.
|
| |
| void | fillRGB (unsigned width, unsigned height, unsigned char *rgb_buffer, unsigned rgb_line_step=0) const override |
| | fills a user given buffer with the RGB values, with an optional nearest-neighbor down sampling and an optional subregion
|
| |
| void | fillGrayscale (unsigned width, unsigned height, unsigned char *gray_buffer, unsigned gray_line_step=0) const override |
| | fills a user given buffer with the gray values, with an optional nearest-neighbor down sampling and an optional subregion
|
| |
| bool | isResizingSupported (unsigned input_width, unsigned input_height, unsigned output_width, unsigned output_height) const override |
| |
| | 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 throw () |
| | 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 throw () |
| |
| unsigned | getHeight () const throw () |
| |
| unsigned | getFrameID () const throw () |
| |
| unsigned long | getTimeStamp () const throw () |
| |
| const xn::ImageMetaData & | getMetaData () const throw () |
| |
This class provides methods to fill a RGB or Grayscale image buffer from underlying RGB24 image.
- Author
- Suat Gedikli
- Date
- 19. June 2011
Definition at line 55 of file openni_image_rgb24.h.