- All Known Implementing Classes:
ImageSequenceViewer
public interface ImageSequenceView
Viewer for an
ImageSequence
which grants read only access to the
sequence.- Author:
- Dominick Leppich
-
Method Summary
Modifier and TypeMethodDescriptionboolean
Check, if a givenObject
is inside this sequence.get
(int arg0) Get theVideoImage
at a given position.Return theDimension
of the images in this sequence.getList()
Get the whole sequence ofVideoImage
s as aList
.getRegex()
Get the regular expression describing all image files.boolean
isEmpty()
Check, if the sequence is empty.void
reorder()
Renames all files and create a regular expression for all files.int
size()
Return the size of the sequence (the number ofVideoImage
s saved in the sequence).
-
Method Details
-
contains
Check, if a givenObject
is inside this sequence. -
get
Get theVideoImage
at a given position.- Parameters:
index
- - Index to get the image from- Returns:
- The
VideoImage
at the given position
-
getList
List<VideoImage> getList()Get the whole sequence ofVideoImage
s as aList
.- Returns:
- All
VideoImage
s in aList
-
isEmpty
boolean isEmpty()Check, if the sequence is empty.- Returns:
- True, if the sequence is empty
-
size
int size()Return the size of the sequence (the number ofVideoImage
s saved in the sequence).- Returns:
- The size of the sequence
-
getDimension
Dimension getDimension()Return theDimension
of the images in this sequence. This dimension is unique, because the sequence doesn't allow to add images with mismatching dimensions.- Returns:
VideoImage
dimension of this sequence
-
reorder
void reorder()Renames all files and create a regular expression for all files. -
getRegex
String getRegex()Get the regular expression describing all image files.- Returns:
- Regular expression
-