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

ippiRemap

Intel_C_Intel
Employee
501 Views
Hi,
The ippiRemap remaps the pixels according to the formula
dst_pixel[i,j] = src_pixel[pxMap[i,j], pyMap[i,j]]
I want to ask if there is a function (or a way) that uses
dst_pixel[pxMap[i,j], pyMap[i,j]] = src_pixel[i,j]
thanks.
0 Kudos
2 Replies
Intel_C_Intel
Employee
501 Views
Sorry it seems that i was specific enough.
Here's the correct formula, it implements mean shift (or displacement over a field map).
dst_pixel[pxMap[i,j], pyMap[i,j]] = dst_pixel[pxMap[i,j], pyMap[i,j]] + src_pixel[i,j]
So if anyone can help me...
0 Kudos
Vladimir_Dudnik
Employee
501 Views

Hi, unfortunately we do not have such function in IPP

Vladimir

0 Kudos
Reply