Function openvino_sys::ie_blob_make_memory_i420[][src]

pub unsafe fn ie_blob_make_memory_i420(
    y: *const ie_blob_t,
    u: *const ie_blob_t,
    v: *const ie_blob_t,
    i420Blob: *mut *mut ie_blob_t
) -> IEStatusCode
Expand description

@brief Creates I420 blob from three planes Y, U and V. @ingroup Blob @param y A pointer to the ie_blob_t instance that represents Y plane in I420 color format. @param u A pointer to the ie_blob_t instance that represents U plane in I420 color format. @param v A pointer to the ie_blob_t instance that represents V plane in I420 color format. @param i420Blob A pointer to the newly created blob. @return Status code of the operation: OK(0) for success.