- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Hello,
I'm working with set of images, each image is 320*240 pixels, divide to 17X15 blocks (each block 16X16 pixels).
I wish to do give a "focus grade" to each block.
For now I used IPP FFT with 16X16 LP filter. Does IPP conv will give faster run time ?
Thanks,
Eran
Link Copied
1 Reply
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
Eran,
For the Conv function, it internally may use the FFT functions depending on the image size, data type, etc.
For example, in the ippiConvFuLL,
It takes some the condition like the followings:
#define _FFTUSE 63 * 47
#define MAX_DIR_KERNEL 11 * 11
if(( dstSize.width * dstSize.height < _FFTUSE )|| ( kernel.width * kernel.height < MAX_DIR_KERNEL )){/* Direct implementation here */
} else {
FFT implementation.
}
For your specific size, I suggestion you run the some demo \demo\ippiDemo.exe, or some benchmark tools at
\tools\perfsys\ to check one is good.
Thanks,
Chao
Reply
Topic Options
- Subscribe to RSS Feed
- Mark Topic as New
- Mark Topic as Read
- Float this Topic for Current User
- Bookmark
- Subscribe
- Printer Friendly Page