| 182 | } |
| 183 | |
| 184 | XnStatus xnConfigureCropping(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 185 | { |
| 186 | XnStatus nRetVal = XN_STATUS_OK; |
| 187 | |
| 188 | XnCropping Cropping; |
| 189 | nRetVal = xnXmlReadCropping(pOpcode, &Cropping); |
| 190 | XN_IS_STATUS_OK(nRetVal); |
| 191 | |
| 192 | nRetVal = xnSetCropping(hNode, &Cropping); |
| 193 | XN_IS_STATUS_OK(nRetVal); |
| 194 | |
| 195 | return (XN_STATUS_OK); |
| 196 | } |
| 197 | |
| 198 | XnStatus xnConfigurePixelFormat(XnNodeHandle hNode, const TiXmlElement* pOpcode) |
| 199 | { |
no test coverage detected