* @brief Sets the ImageGenerator node's current 'pixel color' format. * This format is used for generating the next frame. * * @param [in] Format The format to set. * * Remarks * * As an example of a pixel color format, the RGB24 image format has one byte for * red, one byte for green, and one byte for blue. * * When reading the generated data you must use the
| 5079 | * by calling @ref xn::ImageGenerator::IsPixelFormatSupported(). |
| 5080 | */ |
| 5081 | inline XnStatus SetPixelFormat(XnPixelFormat Format) |
| 5082 | { |
| 5083 | return xnSetPixelFormat(GetHandle(), Format); |
| 5084 | } |
| 5085 | |
| 5086 | /** |
| 5087 | * @brief Gets the current pixel color format. This is the format set |
no test coverage detected