The ImageList class represents a list of Image objects. More...
Inherits Interface.
Public Types | |
| typedef ConstListIterator< ImageList, Image > | const_iterator |
| A C++ iterator type for ImageList objects. More... | |
Public Member Functions | |
| ImageList & | append (const ImageList &other) |
| Appends the members of the specified ImageList to this ImageList. More... | |
| const_iterator | begin () const |
| The C++ iterator set to the beginning of this ImageList. More... | |
| int | count () const |
| The number of images in this list. More... | |
| const_iterator | end () const |
| The C++ iterator set to the end of this ImageList. More... | |
| ImageList (const ListBaseImplementation< Image > &) | |
| ImageList () | |
| Constructs an empty list of images. More... | |
| bool | isEmpty () const |
| Reports whether the list is empty. More... | |
| Image | operator[] (int index) const |
| Access a list member by its position in the list. More... | |
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().
| typedef ConstListIterator<ImageList, Image> const_iterator |
A C++ iterator type for ImageList objects.
| ImageList | ( | ) |
Constructs an empty list of images.
| const_iterator begin | ( | ) | const |
The C++ iterator set to the beginning of this ImageList.
| int count | ( | ) | const |
The number of images in this list.
| const_iterator end | ( | ) | const |
The C++ iterator set to the end of this ImageList.
| bool isEmpty | ( | ) | const |
Reports whether the list is empty.
C++