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

IPP Box filter (ippiFilterBox_8u_C1IR) crashing on bigger image

Kishor_D_
New Contributor I
555 Views
When I use "ippiFilterBox_8u_C1IR" on smaller image(512*512) it works fine. but, when I apply it on bigger image(5100 * 6599) it gives "Access violation reading location 0x0943ec43" error.
0 Kudos
5 Replies
Thomas_Jensen1
Beginner
555 Views
FilterBox requires borders, have you taken care of that?

Borders: allocate new image with extra border space, copy original image to the middle of it, then run FilterBox on it, with source = bordered image and target = original image.
0 Kudos
SergeyKostrov
Valued Contributor II
555 Views
...on bigger image(5100 * 6599) it gives "Access violation reading location 0x0943ec43" error...


5100 * 6599 = 33654900 bytes =~ 32MB

Are you creating it on the stack?
0 Kudos
SergeyKostrov
Valued Contributor II
555 Views

>>...on bigger image(5100 * 6599) it gives "Access violation reading location 0x0943ec43" error...

5100 * 6599 = 33654900 bytes =~ 32MB

Are you creating it on the stack?

0 Kudos
SergeyKostrov
Valued Contributor II
555 Views

...on bigger image(5100 * 6599) it gives "Access violation reading location 0x0943ec43" error...

5100 * 6599 = 33654900 bytes =~ 32MB

Are you creating it on the stack?

0 Kudos
Royi
Novice
555 Views

Does Intel IPP use Integral Image or Running Sum to compute Box Filter?

Could the crash happen due to number is too large (In case of using Integral Image).

0 Kudos
Reply