* @brief Sets the current map output mode of the generator node. * * Remarks * * A map output mode is contained in a @ref xn::XnMapOutputMode structure comprising * the frame rate (in frames per second), and the X and Y dimensions (the number * of elements in each of the X- and Y- axes). * * It is the application programmer's responsibility to check first if the outp
| 4317 | * "GetSupportedMapOutputModes()" method. |
| 4318 | */ |
| 4319 | inline XnStatus SetMapOutputMode(const XnMapOutputMode& OutputMode) |
| 4320 | { |
| 4321 | return xnSetMapOutputMode(GetHandle(), &OutputMode); |
| 4322 | } |
| 4323 | |
| 4324 | /** |
| 4325 | * @brief Gets the current map output mode of the generator node. This is the |
no test coverage detected