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

blockwise operations

micromysore1
Beginner
473 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
473 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