PARP Research Group Universidad de Murcia


Morphological Operation
[IPP wrapper functions]

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

Functions

void Dilate (const QVImage< uChar, 1 > &qvimage_pSrc, QVImage< uChar, 1 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using an arbitrary mask.
void Dilate (const QVImage< uChar, 3 > &qvimage_pSrc, QVImage< uChar, 3 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using an arbitrary mask.
void Dilate (QVImage< uChar, 1 > &qvimage_pSrcDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0))
 Performs in-place erosion dilation using an arbitrary mask.
void Dilate (const QVImage< uShort, 1 > &qvimage_pSrc, QVImage< uShort, 1 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using an arbitrary mask.
void Dilate (const QVImage< uShort, 3 > &qvimage_pSrc, QVImage< uShort, 3 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using an arbitrary mask.
void Dilate (const QVImage< sFloat, 1 > &qvimage_pSrc, QVImage< sFloat, 1 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using an arbitrary mask.
void Dilate (const QVImage< sFloat, 3 > &qvimage_pSrc, QVImage< sFloat, 3 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 Performs in-place erosion dilation using an arbitrary mask.
void Erode (const QVImage< uChar, 1 > &qvimage_pSrc, QVImage< uChar, 1 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode_8u_C1R.
void Erode (const QVImage< uChar, 3 > &qvimage_pSrc, QVImage< uChar, 3 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode_8u_C3R.
void Erode (QVImage< uChar, 1 > &qvimage_pSrcDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode_8u_C1IR.
void Erode (const QVImage< uShort, 1 > &qvimage_pSrc, QVImage< uShort, 1 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode_16u_C1R.
void Erode (const QVImage< uShort, 3 > &qvimage_pSrc, QVImage< uShort, 3 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode_16u_C3R.
void Erode (const QVImage< sFloat, 1 > &qvimage_pSrc, QVImage< sFloat, 1 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode_32f_C1R.
void Erode (const QVImage< sFloat, 3 > &qvimage_pSrc, QVImage< sFloat, 3 > &qvimage_pDst, const uChar &pMask, const QSize &maskSize=QSize(3, 3), const QPoint &anchor=QPoint(0, 0), const QPoint &destROIOffset=QPoint(0, 0))
 QVision wrapper function for IPP's ippiErode_32f_C3R.

Detailed Description

Image processing functions that perform morphological operations on images.


Function Documentation

void Dilate ( const QVImage< uChar, 1 > &  qvimage_pSrc,
QVImage< uChar, 1 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using an arbitrary mask.

This is the QVision wrapper function for IPP's ippiDilate_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3394 of file qvippfunctions.cpp.

Referenced by Dilate().

void Dilate ( const QVImage< uChar, 3 > &  qvimage_pSrc,
QVImage< uChar, 3 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using an arbitrary mask.

This is the QVision wrapper function for IPP's ippiDilate_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3415 of file qvippfunctions.cpp.

void Dilate ( QVImage< uChar, 1 > &  qvimage_pSrcDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0) 
)

Performs in-place erosion dilation using an arbitrary mask.

This is the QVision wrapper function for IPP's ippiDilate_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.

Definition at line 3436 of file qvippfunctions.cpp.

void Dilate ( const QVImage< uShort, 1 > &  qvimage_pSrc,
QVImage< uShort, 1 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using an arbitrary mask.

This is the QVision wrapper function for IPP's ippiDilate_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3451 of file qvippfunctions.cpp.

void Dilate ( const QVImage< uShort, 3 > &  qvimage_pSrc,
QVImage< uShort, 3 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using an arbitrary mask.

This is the QVision wrapper function for IPP's ippiDilate_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3472 of file qvippfunctions.cpp.

void Dilate ( const QVImage< sFloat, 1 > &  qvimage_pSrc,
QVImage< sFloat, 1 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using an arbitrary mask.

This is the QVision wrapper function for IPP's ippiDilate_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3493 of file qvippfunctions.cpp.

void Dilate ( const QVImage< sFloat, 3 > &  qvimage_pSrc,
QVImage< sFloat, 3 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

Performs in-place erosion dilation using an arbitrary mask.

This is the QVision wrapper function for IPP's ippiDilate_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3514 of file qvippfunctions.cpp.

void Erode ( const QVImage< uChar, 1 > &  qvimage_pSrc,
QVImage< uChar, 1 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode_8u_C1R.

This is the QVision wrapper function for IPP's ippiErode_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3535 of file qvippfunctions.cpp.

Referenced by Erode().

void Erode ( const QVImage< uChar, 3 > &  qvimage_pSrc,
QVImage< uChar, 3 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode_8u_C3R.

This is the QVision wrapper function for IPP's ippiErode_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3556 of file qvippfunctions.cpp.

void Erode ( QVImage< uChar, 1 > &  qvimage_pSrcDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode_8u_C1IR.

This is the QVision wrapper function for IPP's ippiErode_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.

Definition at line 3577 of file qvippfunctions.cpp.

void Erode ( const QVImage< uShort, 1 > &  qvimage_pSrc,
QVImage< uShort, 1 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode_16u_C1R.

This is the QVision wrapper function for IPP's ippiErode_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3592 of file qvippfunctions.cpp.

void Erode ( const QVImage< uShort, 3 > &  qvimage_pSrc,
QVImage< uShort, 3 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode_16u_C3R.

This is the QVision wrapper function for IPP's ippiErode_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3613 of file qvippfunctions.cpp.

void Erode ( const QVImage< sFloat, 1 > &  qvimage_pSrc,
QVImage< sFloat, 1 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode_32f_C1R.

This is the QVision wrapper function for IPP's ippiErode_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3634 of file qvippfunctions.cpp.

void Erode ( const QVImage< sFloat, 3 > &  qvimage_pSrc,
QVImage< sFloat, 3 > &  qvimage_pDst,
const uChar &  pMask,
const QSize &  maskSize = QSize(3, 3),
const QPoint &  anchor = QPoint(0, 0),
const QPoint &  destROIOffset = QPoint(0, 0) 
)

QVision wrapper function for IPP's ippiErode_32f_C3R.

This is the QVision wrapper function for IPP's ippiErode_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
pMask Corresponds to the same parameter in the IPP function.
maskSize Corresponds to the same parameter of type IppiSize in the IPP function.
anchor Corresponds to the same parameter of type IppiPoint in the IPP function.
destROIOffset Pointer to destination ROI. See section Destination ROI pointer for more info about this parameter.

Definition at line 3655 of file qvippfunctions.cpp.




QVision framework. PARP research group. Copyright © 2007, 2008, 2009, 2010, 2011.