VectorOfMatPushTDepth Method (CvArrayTDepth) |
http://www.emgu.com
Convert a CvArray to cv::Mat and push it into the vector
Namespace: Emgu.CV.UtilAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic void Push<TDepth>(
CvArray<TDepth> cvArray
)
where TDepth : new()
Public Sub Push(Of TDepth As New) (
cvArray As CvArray(Of TDepth)
)
public:
generic<typename TDepth>
where TDepth : gcnew()
void Push(
CvArray<TDepth>^ cvArray
)
member Push :
cvArray : CvArray<'TDepth> -> unit when 'TDepth : new()
Parameters
- cvArray
- Type: Emgu.CVCvArrayTDepth
The cvArray to be pushed into the vector
Type Parameters
- TDepth
- The type of depth of the cvArray
See Also