链接已复制
1 回复
Hi,
in IPP it is very easy because you have direct access to image data. So all you need is to calculate pixel address, for 8u_C1 images it is something like this:
let i - is column #
and j is row #
pixel_value = pSrc[ j*imageStep + i ];
Regards,
Vladimir
