http://www.emgu.com
Determines whether the CvTracks contains a specific id and CvTrack.
Namespace: Emgu.CV.CvbAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic bool Contains(
KeyValuePair<uint, CvTrack> item
)
Public Function Contains (
item As KeyValuePair(Of UInteger, CvTrack)
) As Boolean
public:
virtual bool Contains(
KeyValuePair<unsigned int, CvTrack> item
) sealed
abstract Contains :
item : KeyValuePair<uint32, CvTrack> -> bool
override Contains :
item : KeyValuePair<uint32, CvTrack> -> bool
Parameters
- item
- Type: System.Collections.GenericKeyValuePairUInt32, CvTrack
The id and CvTrack to be located
Return Value
Type:
BooleanTrue if the
item is found in the CvTracks; otherwise, false.
Implements
ICollectionTContains(T)
See Also