SwisTrack/Components/DynamicNearestNeighborTracking
Description
editGreedy nearest neighbor tracking, that automatically creates and destroys tracks.
Parameters
editInitialWindowSize
editThe length in pixels of the side of a square to make an initial window size. It will always use the same size. Really it should set this automatically from the particle...
FrameKillThreshold
editThe number of frames to keep the track around before killing it, if it hasn't been updated.
MinNewTrackDistance
editThe minimum distance a new track must be from existing tracks.
MaxDistance
editInherited from NearestNeighborTracking. If the distance between a particle and a track is larger than this distance, the particle will not be associated with the track. If in addition it is greater than MinNewTrackDistance, a new track will be created.
TrackDistanceKillThreshold
editIf two tracks get less than this distance to each other, the shorter one will be destroyed.
MaxNumber
editThe number of tracks. I think.