Merge pull request #7851 from terfendail:ovx_imagespace

This commit is contained in:
Alexander Alekhin
2016-12-16 10:37:04 +00:00
+9
View File
@@ -1588,6 +1588,15 @@ static const vx_enum
}
#endif // VX_VERSION_1_1
/// vxSetImageAttribute() wrapper
template<typename T>
void setAttribute(vx_enum att, T& value) const
{ IVX_CHECK_STATUS(vxSetImageAttribute(ref, att, &value, sizeof(value))); }
/// vxSetImageAttribute(SPACE) wrapper
void setColorSpace(const vx_enum& sp)
{ setAttribute(VX_IMAGE_SPACE, sp); }
/// vxGetValidRegionImage() wrapper
vx_rectangle_t getValidRegion() const
{