The Accelerate framework is a Mac-specific framework that provides things like image convolutions and LAPACK, supposedly optimized to be as fast as possible on Macs. My question: Does OpenCV take advantage of this? Specifically, does the function "filter2D" use Accelerate?
|
feedback
|
|
Not a mac expert but AFAIK openCV uses IPP (if installed) TBB (build option) and NVidia-CUDA (build option) | |||
|
feedback
|
|
It does not use the Accelerate framework, but it looks like it has been speeded up using the CUDA stuff in 2.2 The relevant files in OpenCV2.2 ... /modules/gpu/include/opencv2/gpu/gpu.hpp /modules/gpu/src/filtering.cpp and modules/imgproc/src/filter.cpp for the non-gpu stuff | |||
|
feedback
|
|
If you use the MacPorts version, you can specify the options
I have used
with success. Concerning the Accelerate.framework specifically, this blog entry says "# Add Accelerate.framework which is used internally from OpenCV library.", but I have no clue as to know if it is the case here. | |||
|
feedback
|