http://www.emgu.com
Determines whether the CvTracks contains a specific id and CvTrack.
Namespace:
Emgu.CV.Cvb
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
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