Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
Announcements
FPGA community forums and blogs on community.intel.com are migrating to the new Altera Community and are read-only. For urgent support needs during this transition, please visit the FPGA Design Resources page or contact an Altera Authorized Distributor.

ippiRemap

Intel_C_Intel
Employee
508 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
508 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
508 Views

Hi, unfortunately we do not have such function in IPP

Vladimir

0 Kudos
Reply