CvTracksRemove Method (KeyValuePairUInt32, CvTrack) |
http://www.emgu.com
Removes a key and value from the dictionary.
Namespace: Emgu.CV.CvbAssembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntaxpublic bool Remove(
KeyValuePair<uint, CvTrack> item
)
Public Function Remove (
item As KeyValuePair(Of UInteger, CvTrack)
) As Boolean
public:
virtual bool Remove(
KeyValuePair<unsigned int, CvTrack> item
) sealed
abstract Remove :
item : KeyValuePair<uint32, CvTrack> -> bool
override Remove :
item : KeyValuePair<uint32, CvTrack> -> bool
Parameters
- item
- Type: System.Collections.GenericKeyValuePairUInt32, CvTrack
The structure representing the key and value to be removed
Return Value
Type:
BooleanTrue if the key are value is sucessfully found and removed; otherwise false.
Implements
ICollectionTRemove(T)
See Also