CvTracksRemove Method (KeyValuePairUInt32, CvTrack) |
http://www.emgu.com
Removes a key and value from the dictionary.
Namespace:
Emgu.CV.Cvb
Assembly:
Emgu.CV.World.NetStandard (in Emgu.CV.World.NetStandard.dll) Version: 1.0.0
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