Methods:
The ImageList class represents a list of Image objects.
Get the ImageList object associated with the a Frame of tracking data by calling Frame::images(). Get the most recent set of images, which can be newer than the images used to create the current frame, by calling Controller::images().
Public Functions
- Since
- 2.1.0
int count()The number of images in this list.
- Return
- The number of images in this list.
- Since
- 2.1.0
Image get(int index)Access a list member by its position in the list.
- Return
- The Image object at the specified index.
- Since
- 2.1.0
- Parameters
- index -
The zero-based list position index.
ImageList()Constructs an empty list of images.
- Since
- 2.1.0
boolean isEmpty()Reports whether the list is empty.
- Return
- True, if the list has no members.
- Since
- 2.1.0
class ImageListIterator