Parameters
The parameters in functions are in the following order: all source operands, all destination operands, all other operation-specific parameters.
Source parameters are named
Src
or SrcN
, if there is more than one input image. Destination parameters are named Dst
. For in-place operations, the input/output parameter contains the name SrcDst
. All parameters defined as pointers start with lowercase p
, for example, pSrc
, pMean
, pSpec
.