VectorOfMatPushTDepth Method (CvArrayTDepth) |
http://www.emgu.com
Convert a CvArray to cv::Mat and push it into the vector
Namespace:
Emgu.CV.Util
Assembly:
Emgu.CV.World (in Emgu.CV.World.dll) Version: 4.0.1.3373 (4.0.1.3373)
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