C# Class Emgu.CV.Util.VectorOfDMatch

Wraped class of the C++ standard vector of DMatch.
Inheritance: Emgu.Util.UnmanagedObject
ファイルを表示 Open project: fajoy/RTSPExample Class Usage Examples

Public Methods

Method Description
Clear ( ) : void

Clear the vector

Push ( MDMatch value ) : void

Push an array of value into the standard vector

ToArray ( ) : Emgu.CV.Structure.MDMatch[]

Convert the standard vector to an array of DMatch

VectorOfDMatch ( ) : System

Create an empty standard vector of DMatch

VectorOfDMatch ( int size ) : System

Create an standard vector of DMatch of the specific size

Protected Methods

Method Description
DisposeObject ( ) : void

Release the standard vector

Method Details

Clear() public method

Clear the vector
public Clear ( ) : void
return void

DisposeObject() protected method

Release the standard vector
protected DisposeObject ( ) : void
return void

Push() public method

Push an array of value into the standard vector
public Push ( MDMatch value ) : void
value Emgu.CV.Structure.MDMatch The value to be pushed to the vector
return void

ToArray() public method

Convert the standard vector to an array of DMatch
public ToArray ( ) : Emgu.CV.Structure.MDMatch[]
return Emgu.CV.Structure.MDMatch[]

VectorOfDMatch() public method

Create an empty standard vector of DMatch
public VectorOfDMatch ( ) : System
return System

VectorOfDMatch() public method

Create an standard vector of DMatch of the specific size
public VectorOfDMatch ( int size ) : System
size int The size of the vector
return System