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.

About Blur

sadan_job
Beginner
745 Views
Hello All
A have some quastion about some fuction from IPP such as
ippiConvValid_32f_C3R.

I have tryed convolution matrix of image with kernel 3x3
Arr{
0,0,0
0,1,0
0,0,0
}


I have used the following code:

ippiConvValid_32f_C3R.
(Ipp32f*)temp.DataPtr(), temp.Step(), temp.Size(),
(Ipp32f*)Arr.DataPtr(), 3, Arr.Size(),
(Ipp32f*)tempdst.DataPtr(), tempdst.Step());


I use black and white image
I should get the same image after convolution
But i get image with much green color.

May be you know what i did wrong

0 Kudos
3 Replies
Vladimir_Dudnik
Employee
745 Views

Hello,

step is number of bytes between adjacent lines. Remember about that when you work with data other than Ipp8u.

Regards,
Vladimir

0 Kudos
sadan_job
Beginner
745 Views
Hello Vladimir

Thank you for the answer
I think you are excellent knowing this lib

?ould you get me your icq, please?
Because i am have some question about this lib
Icq is a faster then this forum
My mail denka@soborka.net



0 Kudos
Vladimir_Dudnik
Employee
745 Views

could you please take a look on the thread Generalized Gaussian Blur, borders and filters for whole images

Regards,
Vladimir

0 Kudos
Reply