Merge pull request #7851 from terfendail:ovx_imagespace

pull/7873/head
Alexander Alekhin 8 years ago
commit 9c7088d95f
  1. 9
      3rdparty/openvx/include/ivx.hpp

@ -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
{

Loading…
Cancel
Save