Performs matrix transformation of every element of array src and stores the results in dst Both source and destination arrays should have the same depth and the same size or selected ROI size. transmat and shiftvec should be real floating-point matrices.

Namespace: Emgu.CV
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 2.2.1.1150 (2.2.1.1150)

Syntax

         
 C#  Visual Basic  Visual C++ 
public static void cvTransform(
	IntPtr src,
	IntPtr dst,
	IntPtr transmat,
	IntPtr shiftvec
)
Public Shared Sub cvTransform ( _
	src As IntPtr, _
	dst As IntPtr, _
	transmat As IntPtr, _
	shiftvec As IntPtr _
)
public:
static void cvTransform(
	IntPtr src, 
	IntPtr dst, 
	IntPtr transmat, 
	IntPtr shiftvec
)

Parameters

src
IntPtr
The first source array
dst
IntPtr
The destination array
transmat
IntPtr
Transformation matrix
shiftvec
IntPtr
Optional shift vector

See Also