Click or drag to resize
CvTracksTryGetValue Method
http://www.emgu.com
Gets the track associated with the specified id.

Namespace: Emgu.CV.Cvb
Assembly: Emgu.CV (in Emgu.CV.dll) Version: 3.0.0.2161 (3.0.0.2161)
Syntax
public bool TryGetValue(
	uint id,
	out CvTrack track
)

Parameters

id
Type: SystemUInt32
The track id
track
Type: Emgu.CV.CvbCvTrack
When this method returns, contains the track associated with the specified id, if the id is found; otherwise, an empty track. This parameter is passed uninitialized.

Return Value

Type: Boolean
True if the tracks contains a track with the specific id; otherwise, false

Implements

IDictionaryTKey, TValueTryGetValue(TKey, TValue)
See Also