/* SetData assigns user data to the image header */ func (img *IplImage) SetData(data unsafe.Pointer, step int) { C.cvSetData(unsafe.Pointer(img), data, C.int(step)) }
/* SetData assigns user data to the matrix header. */ func (mat *Mat) SetData(data unsafe.Pointer, step int) { C.cvSetData(unsafe.Pointer(mat), data, C.int(step)) }