Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.

Change pixel value (PutPixel)

hcostelha
Beginner
526 Views
Hi,

What is the easiest way to set a pixel value in a 8u_C1 image? I have a loop that needs to set pixels to a value as it goes.

IPL had a PutPixel, but IPP has nothing of that kind.

Thanks in advanced.

Hugo
0 Kudos
1 Reply
Vladimir_Dudnik
Employee
526 Views

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

0 Kudos
Reply