VectorOfMatPushTDepth Method (CvArrayTDepth) |
http://www.emgu.com
Convert a group of CvArray to cv::Mat and push them 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>[] values
)
where TDepth : new()
Public Sub Push(Of TDepth As New) (
values As CvArray(Of TDepth)()
)
public:
generic<typename TDepth>
where TDepth : gcnew()
void Push(
array<CvArray<TDepth>^>^ values
)
member Push :
values : CvArray<'TDepth>[] -> unit when 'TDepth : new()
Parameters
- values
- Type: Emgu.CVCvArrayTDepth
The values to be pushed to the vector
Type Parameters
- TDepth
- The type of depth of the cvArray
See Also