CvInvokeConvertMaps Method |
http://www.emgu.com
Converts image transformation maps from one representation to another.
Namespace:
Emgu.CV
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.1.1.3497 (4.1.1.3497)
Syntaxpublic static void ConvertMaps(
IInputArray map1,
IInputArray map2,
IOutputArray dstmap1,
IOutputArray dstmap2,
DepthType dstmap1Depth,
int dstmap1Channels,
bool nninterpolation = false
)
Public Shared Sub ConvertMaps (
map1 As IInputArray,
map2 As IInputArray,
dstmap1 As IOutputArray,
dstmap2 As IOutputArray,
dstmap1Depth As DepthType,
dstmap1Channels As Integer,
Optional nninterpolation As Boolean = false
)
public:
static void ConvertMaps(
IInputArray^ map1,
IInputArray^ map2,
IOutputArray^ dstmap1,
IOutputArray^ dstmap2,
DepthType dstmap1Depth,
int dstmap1Channels,
bool nninterpolation = false
)
static member ConvertMaps :
map1 : IInputArray *
map2 : IInputArray *
dstmap1 : IOutputArray *
dstmap2 : IOutputArray *
dstmap1Depth : DepthType *
dstmap1Channels : int *
?nninterpolation : bool
(* Defaults:
let _nninterpolation = defaultArg nninterpolation false
*)
-> unit
Parameters
- map1
- Type: Emgu.CVIInputArray
The first input map of type CV_16SC2 , CV_32FC1 , or CV_32FC2 . - map2
- Type: Emgu.CVIInputArray
The second input map of type CV_16UC1 , CV_32FC1 , or none (empty matrix), respectively. - dstmap1
- Type: Emgu.CVIOutputArray
The first output map that has the type dstmap1type and the same size as src . - dstmap2
- Type: Emgu.CVIOutputArray
The second output map. - dstmap1Depth
- Type: Emgu.CV.CvEnumDepthType
Depth type of the first output map that should be CV_16SC2 , CV_32FC1 , or CV_32FC2. - dstmap1Channels
- Type: SystemInt32
The number of channels in the dst map. - nninterpolation (Optional)
- Type: SystemBoolean
Flag indicating whether the fixed-point maps are used for the nearest-neighbor or for a more complex interpolation.
See Also