* @brief Gets the current map output mode of the generator node. This is the * map output mode that the generator node will use to generate the next data frame. * * Remarks * * A map output mode is the combination of the scene resolution and frame rate. * It is contained in an @ref xn::XnMapOutputMode structure comprising the frame * rate (in frames per second), and the
| 4339 | * This map output mode is the mode set by @ref SetMapOutputMode(). |
| 4340 | */ |
| 4341 | inline XnStatus GetMapOutputMode(XnMapOutputMode &OutputMode) const |
| 4342 | { |
| 4343 | return xnGetMapOutputMode(GetHandle(), &OutputMode); |
| 4344 | } |
| 4345 | |
| 4346 | /** |
| 4347 | * @brief Gets the number of bytes per pixel for the node's map data. This mode |
no test coverage detected