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.

blockwise operations

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