Module video

Interface ImageSequenceControl

All Known Implementing Classes:
ImageSequenceController

public interface ImageSequenceControl
Controller for an ImageSequence which grants write only access to the sequence.
Author:
Dominick Leppich
  • Method Summary

    Modifier and Type
    Method
    Description
    void
    add(int index, VideoImage image)
    Add a VideoImage at a specified position in the sequence.
    void
    add(VideoImage image)
    Add a VideoImage at the end of the sequence.
    void
    Clear the sequence of images.
    remove(int index)
    Remove the image at the specified position.
  • Method Details

    • add

      void add(VideoImage image)
      Add a VideoImage at the end of the sequence.
      Parameters:
      image - - VideoImage
    • add

      void add(int index, VideoImage image)
      Add a VideoImage at a specified position in the sequence.
      Parameters:
      index - - Index to insert the image
      image - - VideoImage
    • clear

      void clear()
      Clear the sequence of images.
    • remove

      VideoImage remove(int index)
      Remove the image at the specified position.
      Parameters:
      index - - Index of the image to remove
      Returns:
      The VideoImage which was removed