2012-10-30 21:58:44 +08:00
Data Structures and Utility Functions
========================================
.. highlight :: cpp
ocl::Info
---------
.. ocv:class :: ocl::Info
this class should be maintained by the user and be passed to getDevice
ocl::getDevice
------------------
Returns the list of devices
.. ocv:function :: int ocl::getDevice( std::vector<Info> & oclinfo, int devicetype=CVCL_DEVICE_TYPE_GPU )
:param oclinfo: Output vector of ``ocl::Info`` structures
:param devicetype: One of ``CVCL_DEVICE_TYPE_GPU``, ``CVCL_DEVICE_TYPE_CPU`` or ``CVCL_DEVICE_TYPE_DEFAULT``.
the function must be called before any other `` cv::ocl `` functions; it initializes ocl runtime.
ocl::setDevice
------------------
Returns void
.. ocv:function :: void ocl::setDevice( Info &oclinfo, int devnum = 0 )
:param oclinfo: Output vector of ``ocl::Info`` structures
:param devnum: the selected OpenCL device under this platform.
ocl::setBinpath
------------------
Returns void
2012-12-26 21:51:04 +08:00
.. ocv:function :: void ocl::setBinpath(const char *path)
2012-10-30 21:58:44 +08:00
:param path: the path of OpenCL kernel binaries
If you call this function and set a valid path, the OCL module will save the compiled kernel to the address in the first time and reload the binary since that. It can save compilation time at the runtime.
ocl::getoclContext
------------------
Returns the pointer to the opencl context
2012-12-26 21:51:04 +08:00
.. ocv:function :: void* ocl::getoclContext()
2012-10-30 21:58:44 +08:00
Thefunction are used to get opencl context so that opencv can interactive with other opencl program.
ocl::getoclCommandQueue
--------------------------
Returns the pointer to the opencl command queue
2012-12-26 21:51:04 +08:00
.. ocv:function :: void* ocl::getoclCommandQueue()
2012-10-30 21:58:44 +08:00
Thefunction are used to get opencl command queue so that opencv can interactive with other opencl program.