Intel® Integrated Performance Primitives
Deliberate problems developing high-performance vision, signal, security, and storage applications.
Announcements
FPGA community forums and blogs have moved to the Altera Community. Existing Intel Community members can sign in with their current credentials.

blockwise operations

micromysore1
Beginner
919 Views
Are there any blockwise operating functions ?
for ex :
if want to talk blockwise DCT using ippiDCT8x8Fwd_32f_C1(...)

and there is this
Ipp8u *image;
IppiSize sz = {300,400};
image = ippsMalloc_8u(sz.width*sz.height);
ippiImageJaehne_8u_C1R(image, sz.width, sz);
// i need have a function here which gives me blockwise DCT !!

any ideas other than writing my function to do it ??

-madan
0 Kudos
1 Reply
Vladimir_Dudnik
Employee
919 Views
Hi,
we have 8x8 DCT functions, which you cancall several times to process whole image. Please consult IPP Manual for details.
Regards,
Vladimir
0 Kudos
Reply