namespace BBIWARG.Recognition.Tracking
{
///
/// A object that can be identified via a unique ID.
///
public class TrackableObject
{
///
/// the track id
///
public int TrackID { get; private set; }
///
/// Sets the object's track id.
///
/// the track id
public void setTracked(int id)
{
TrackID = id;
}
}
}