Integration Wrappers for Intel® Integrated Performance Primitives Developer Guide and Reference 2019
The IwiFilterGaussian class consists of the following Gaussian filter operation methods:
IwiFilterGaussian()
Default constructor.
|
IwiFilterGaussian() with Initialization
Default constructor with initialization.
|
|||||||||||||||||||||||||||||||
| Parameters |
|
||||||||||||||||||||||||||||||
| Exception Values |
|
||||||||||||||||||||||||||||||
InitAlloc()
Method to allocate and initialize the internal data structure.
|
|||||||||||||||||||||||||||||||
| Parameters |
|
||||||||||||||||||||||||||||||
| Exception Values |
|
||||||||||||||||||||||||||||||
| Return Values |
|
||||||||||||||||||||||||||||||
operator()
Method to perform the warp affine transformation on the specified image ROI.
|
|||||||||||||||||||||||||||||||
| Parameters |
|
||||||||||||||||||||||||||||||
| Exception Values |
|
||||||||||||||||||||||||||||||
| Return Values |
|
||||||||||||||||||||||||||||||
~IwiFilterGaussian()
Default destructor.
~IwiFilterGaussian()
{
if(m_bInitialized)
{
::iwiFilterGaussian_Free(m_pSpec);
m_bInitialized = false;
}
}