VectorOfMatPushTDepth Method (CvArrayTDepth) |
http://www.emgu.com
Convert a group of CvArray to cv::Mat and push them 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>[] 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