PARP Research Group University of Murcia, Spain


Morphological Operation
[IPP wrapper functions]

Image processing functions that perform morphological operations on images. More...

Functions

void Dilate3x3 (const QVImage< uChar, 1 > &qvimage_pSrc, QVImage< uChar, 1 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using a 3x3 mask.
void Dilate3x3 (const QVImage< uChar, 3 > &qvimage_pSrc, QVImage< uChar, 3 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using a 3x3 mask.
void Dilate3x3 (QVImage< uChar, 1 > &qvimage_pSrcDst)
 Performs in-place erosion dilation using a 3x3 mask.
void Dilate3x3 (const QVImage< uShort, 1 > &qvimage_pSrc, QVImage< uShort, 1 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using a 3x3 mask.
void Dilate3x3 (const QVImage< uShort, 3 > &qvimage_pSrc, QVImage< uShort, 3 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using a 3x3 mask.
void Dilate3x3 (const QVImage< sFloat, 1 > &qvimage_pSrc, QVImage< sFloat, 1 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using a 3x3 mask.
void Dilate3x3 (const QVImage< sFloat, 3 > &qvimage_pSrc, QVImage< sFloat, 3 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using a 3x3 mask.
void Erode3x3 (const QVImage< uChar, 1 > &qvimage_pSrc, QVImage< uChar, 1 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode3x3_8u_C1R.
void Erode3x3 (const QVImage< uChar, 3 > &qvimage_pSrc, QVImage< uChar, 3 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode3x3_8u_C3R.
void Erode3x3 (QVImage< uChar, 1 > &qvimage_pSrcDst)
 QVision wrapper function for IPP's ippiErode3x3_8u_C1IR.
void Erode3x3 (const QVImage< uShort, 1 > &qvimage_pSrc, QVImage< uShort, 1 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode3x3_16u_C1R.
void Erode3x3 (const QVImage< uShort, 3 > &qvimage_pSrc, QVImage< uShort, 3 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode3x3_16u_C3R.
void Erode3x3 (const QVImage< sFloat, 1 > &qvimage_pSrc, QVImage< sFloat, 1 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode3x3_32f_C1R.
void Erode3x3 (const QVImage< sFloat, 3 > &qvimage_pSrc, QVImage< sFloat, 3 > &qvimage_pDst, const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode3x3_32f_C3R.

Detailed Description

Image processing functions that perform morphological operations on images.


Function Documentation

void Dilate3x3 ( const QVImage< sFloat, 3 > &  qvimage_pSrc,
QVImage< sFloat, 3 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using a 3x3 mask.

This is the QVision wrapper function for IPP's ippiDilate3x3_32f_C3R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3167 of file qvippfunctions.cpp.

void Dilate3x3 ( const QVImage< sFloat, 1 > &  qvimage_pSrc,
QVImage< sFloat, 1 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using a 3x3 mask.

This is the QVision wrapper function for IPP's ippiDilate3x3_32f_C1R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3153 of file qvippfunctions.cpp.

void Dilate3x3 ( const QVImage< uShort, 3 > &  qvimage_pSrc,
QVImage< uShort, 3 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using a 3x3 mask.

This is the QVision wrapper function for IPP's ippiDilate3x3_16u_C3R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3139 of file qvippfunctions.cpp.

void Dilate3x3 ( const QVImage< uShort, 1 > &  qvimage_pSrc,
QVImage< uShort, 1 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using a 3x3 mask.

This is the QVision wrapper function for IPP's ippiDilate3x3_16u_C1R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3125 of file qvippfunctions.cpp.

void Dilate3x3 ( QVImage< uChar, 1 > &  qvimage_pSrcDst  ) 

Performs in-place erosion dilation using a 3x3 mask.

This is the QVision wrapper function for IPP's ippiDilate3x3_8u_C1IR. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrcDst Image corresponding to the data buffer pointer pSrcDst and step number srcDstStep variables in the IPP function

Definition at line 3116 of file qvippfunctions.cpp.

void Dilate3x3 ( const QVImage< uChar, 3 > &  qvimage_pSrc,
QVImage< uChar, 3 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using a 3x3 mask.

This is the QVision wrapper function for IPP's ippiDilate3x3_8u_C3R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3102 of file qvippfunctions.cpp.

void Dilate3x3 ( const QVImage< uChar, 1 > &  qvimage_pSrc,
QVImage< uChar, 1 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using a 3x3 mask.

This is the QVision wrapper function for IPP's ippiDilate3x3_8u_C1R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3088 of file qvippfunctions.cpp.

Referenced by Dilate3x3().

void Erode3x3 ( const QVImage< sFloat, 3 > &  qvimage_pSrc,
QVImage< sFloat, 3 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode3x3_32f_C3R.

This is the QVision wrapper function for IPP's ippiErode3x3_32f_C3R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3260 of file qvippfunctions.cpp.

void Erode3x3 ( const QVImage< sFloat, 1 > &  qvimage_pSrc,
QVImage< sFloat, 1 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode3x3_32f_C1R.

This is the QVision wrapper function for IPP's ippiErode3x3_32f_C1R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3246 of file qvippfunctions.cpp.

void Erode3x3 ( const QVImage< uShort, 3 > &  qvimage_pSrc,
QVImage< uShort, 3 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode3x3_16u_C3R.

This is the QVision wrapper function for IPP's ippiErode3x3_16u_C3R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3232 of file qvippfunctions.cpp.

void Erode3x3 ( const QVImage< uShort, 1 > &  qvimage_pSrc,
QVImage< uShort, 1 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode3x3_16u_C1R.

This is the QVision wrapper function for IPP's ippiErode3x3_16u_C1R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3218 of file qvippfunctions.cpp.

void Erode3x3 ( QVImage< uChar, 1 > &  qvimage_pSrcDst  ) 

QVision wrapper function for IPP's ippiErode3x3_8u_C1IR.

This is the QVision wrapper function for IPP's ippiErode3x3_8u_C1IR. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrcDst Image corresponding to the data buffer pointer pSrcDst and step number srcDstStep variables in the IPP function

Definition at line 3209 of file qvippfunctions.cpp.

void Erode3x3 ( const QVImage< uChar, 3 > &  qvimage_pSrc,
QVImage< uChar, 3 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode3x3_8u_C3R.

This is the QVision wrapper function for IPP's ippiErode3x3_8u_C3R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3195 of file qvippfunctions.cpp.

void Erode3x3 ( const QVImage< uChar, 1 > &  qvimage_pSrc,
QVImage< uChar, 1 > &  qvimage_pDst,
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode3x3_8u_C1R.

This is the QVision wrapper function for IPP's ippiErode3x3_8u_C1R. See Intel's IPP documentation for a deeper understanding of that function. The parameters of this wrapper function are the following:

Parameters:
qvimage_pSrc Image corresponding to the data buffer pointer pSrc and step number srcStep variables in the IPP function
qvimage_pDst Image corresponding to the data buffer pointer pDst and step number dstStep variables in the IPP function
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3181 of file qvippfunctions.cpp.

Referenced by Erode3x3().




QVision framework. PARP research group, copyright 2007, 2008.