O
- The type of objects that will be trackedI
- The type of image in which the objects will be trackedpublic interface ObjectTracker<O,I>
Modifier and Type | Method and Description |
---|---|
List<O> |
initialiseTracking(Rectangle bounds,
I image)
Initialise the tracking with the given target area in the given image.
|
List<O> |
trackObject(I image)
Track the object in the image.
|
List<O> initialiseTracking(Rectangle bounds, I image)
bounds
- The target area to track in the imageimage
- The image to initialise the tracking withList<O> trackObject(I image)
image
- The image to continue tracking the object within.