Click or drag to resize

IMcTrackOptionsParallelTrackingLimit Property

The maximum number of objects per frame to use parallel tracking.

Namespace:  MediaCy.IQL.Tracking
Assembly:  MediaCy.IQL.Tracking (in MediaCy.IQL.Tracking.dll) Version: 10.0.6912.0
Syntax
VB
Property ParallelTrackingLimit As Integer
	Get
	Set

Property Value

Type: Int32
Remarks
When the maximum number of objects on any frame is less or equal the limit the Parallel tracking algorithm is used. With parallel tracking the tracks for every frame are created in parallel for every frame object. All combinations of tracks is used and the combination with minimum TOTAL COST is selected for the given frame. When the maximum number of objects of any frame exceeds this parameter, the default (Serial) algorithm is used, when tracks are created one by one for all frames in the sequence, where current track cost is minimized. Parallel tracking can produce better results, but it's more time consuming (time increase is NumberOfObjectsPerFrame^2), so it should be used only with small number of objects.
See Also