Modifier and Type | Class and Description |
---|---|
class |
KinectDepthStream
The stream of depth information
|
class |
KinectIRVideoStream
The stream of IR information
|
class |
KinectRGBVideoStream
The stream of RGB information
|
class |
KinectStream<T extends Image<?,T>>
A stream of (visual/ir/depth) data from the Kinect
|
Constructor and Description |
---|
MetadataVideoIterator(ImageCollectionEntrySelection<T> selection,
Video<T> video) |
Modifier and Type | Class and Description |
---|---|
class |
AnimatedVideo<I extends Image<?,I>>
A basic abstract implementation of a video that displays an image and
provides double-buffering
|
class |
ArrayBackedVideo<T extends Image<?,T>>
A video from an array of frames
|
class |
FileBackedVideo<T extends Image<?,T>>
A video backed by a image files on disk.
|
class |
FImageFileBackedVideo
A video backed by a image files on disk.
|
class |
MBFImageFileBackedVideo
A video backed by a image files on disk.
|
class |
VideoCache<I extends Image<?,I>>
This class represents a cache of video material.
|
class |
VideoWriter<T extends Image<?,T>>
An abstract class which classes can override to provide
video writing capabilities.
|
Modifier and Type | Method and Description |
---|---|
Video<T> |
VideoDisplay.getVideo()
Get the video
|
Video<T> |
VideoIterator.getVideo() |
Modifier and Type | Method and Description |
---|---|
static <I extends Image<?,I>> |
VideoCache.cacheVideo(Video<I> video)
Cache the whole of the given video.
|
static <I extends Image<?,I>> |
VideoCache.cacheVideo(Video<I> video,
VideoTimecode start,
VideoTimecode end)
Cache the given time range from the given video.
|
void |
VideoDisplay.changeVideo(Video<T> newVideo)
Change the video that is being displayed by this video display.
|
static <T extends Image<?,T>> |
VideoDisplay.createOffscreenVideoDisplay(Video<T> video)
Convenience function to create a VideoDisplay from a video in a new
window.
|
static <T extends Image<?,T>> |
VideoDisplay.createVideoDisplay(Video<T> video)
Convenience function to create a VideoDisplay from a video in a new
window.
|
static <T extends Image<?,T>> |
VideoDisplay.createVideoDisplay(Video<T> video,
AudioStream audio)
Convenience function to create a VideoDisplay from a video in a new
window.
|
static <T extends Image<?,T>> |
VideoDisplay.createVideoDisplay(Video<T> video,
AudioStream audio,
JComponent comp)
Convenience function to create a VideoDisplay from a video in an existing
component.
|
static <T extends Image<?,T>> |
VideoDisplay.createVideoDisplay(Video<T> video,
AudioStream as,
JFrame screen)
Convenience function to create a VideoDisplay from a video in a new
window.
|
static <T extends Image<?,T>> |
VideoDisplay.createVideoDisplay(Video<T> video,
DisplayUtilities.ImageComponent ic)
Convenience function to create a VideoDisplay from a video in a new
window.
|
static <T extends Image<?,T>> |
VideoDisplay.createVideoDisplay(Video<T> video,
JComponent comp)
Convenience function to create a VideoDisplay from a video in an existing
component.
|
static <T extends Image<?,T>> |
VideoDisplay.createVideoDisplay(Video<T> video,
JFrame screen)
Convenience function to create a VideoDisplay from a video in a new
window.
|
static <T extends Image<?,T>> |
VideoPlayer.createVideoPlayer(Video<T> video)
Creates a new video player in a new thread and starts it running
(initially in pause mode).
|
static <T extends Image<?,T>> |
VideoPlayer.createVideoPlayer(Video<T> video,
AudioStream audio)
Creates a new video player in a new thread and starts it running
(initially in pause mode).
|
Constructor and Description |
---|
VideoDisplay(Video<T> v,
AudioStream a,
DisplayUtilities.ImageComponent screen)
Construct a video display with the given video and audio
|
VideoDisplay(Video<T> v,
DisplayUtilities.ImageComponent screen)
Construct a video display with the given video and frame.
|
VideoIterator(Video<T> video)
Construct with given video.
|
VideoPlayer(Video<T> v)
Create the video player to play the given video.
|
VideoPlayer(Video<T> v,
AudioStream audio)
Create the video player to play the given video.
|
VideoPlayer(Video<T> v,
AudioStream audio,
DisplayUtilities.ImageComponent screen)
Created the video player for the given video on the given image
component.
|
Modifier and Type | Class and Description |
---|---|
class |
VideoAnalyser<T extends Image<?,T>>
This class is analagous to the
ImageAnalyser class for analysing
image. |
Constructor and Description |
---|
VideoAnalyser(Video<T> v)
Construct a chainable video analyser.
|
Modifier and Type | Class and Description |
---|---|
class |
VideoCapture
VideoCapture is a type of
Video that can capture live video streams
from a webcam or other video device. |
Modifier and Type | Class and Description |
---|---|
class |
GStreamerVideo |
Modifier and Type | Class and Description |
---|---|
class |
GreyscaleSlitScanProcessor
VideoProcessor that produces a slit-scan effect based on the time-map
in a greyscale image. |
class |
SlitScanProcessor
VideoProcessor that produces a slit-scan effect. |
Constructor and Description |
---|
GreyscaleSlitScanProcessor(Video<MBFImage> video,
FImage timemap,
int cacheSize)
Constructor for creating a video processor which is chainable.
|
GreyscaleSlitScanProcessor(Video<MBFImage> video,
int cacheSize)
Constructor for creating a video processor which is chainable.
|
SlitScanProcessor(Video<MBFImage> video,
int cacheSize)
Constructor for creating a video processor which is chainable.
|
Modifier and Type | Class and Description |
---|---|
class |
GridMotionEstimator
Estimates the motion field over a grid.
|
class |
MotionEstimator
A motion estimator will estimate the motion of parts of a video frame.
|
Constructor and Description |
---|
GridMotionEstimator(Video<FImage> v,
MotionEstimatorAlgorithm alg,
int x,
int y,
boolean fixed)
Construct a chained grid-based motion estimator.
|
MotionEstimator(Video<FImage> v,
MotionEstimatorAlgorithm alg)
Create a chainable motion estimator.
|
Modifier and Type | Class and Description |
---|---|
class |
FMeanVarianceField
Compute the mean and variance fields from a video of
FImage frames. |
class |
MBFMeanVarianceField
Compute the mean and variance fields from a video of
MBFImage frames. |
Modifier and Type | Class and Description |
---|---|
class |
CombiShotDetector
A shot detector that uses evidence from a number of shot detectors
to determine if a shot has been detected.
|
class |
HistogramVideoShotDetector
Video shot detector class implemented as a video display listener.
|
class |
LocalHistogramVideoShotDetector
A shot detector implementing the Steiner et al.
|
class |
VideoShotDetector<I extends Image<?,I>>
Video shot detector class implemented as a video display listener.
|
Constructor and Description |
---|
CombiShotDetector(Video<MBFImage> video)
Default constructor that takes the video to be processed
|
HistogramVideoShotDetector(Video<MBFImage> video)
Default constructor takes the video to process.
|
HistogramVideoShotDetector(Video<MBFImage> video,
boolean display)
Constructor that determines whether to display the processing.
|
LocalHistogramVideoShotDetector(Video<MBFImage> video,
int nGridElements) |
VideoShotDetector(Video<I> video)
Constructor that takes the video file to process.
|
VideoShotDetector(Video<I> video,
boolean display)
Default constructor that takes the video file to process and
whether or not to display the video as it's being processed.
|
Modifier and Type | Method and Description |
---|---|
<I extends Image<?,I>,O> |
ObjectTimeFinder.trackObject(ObjectTracker<O,I> objectTracker,
Video<I> video,
VideoTimecode keyframeTime,
Rectangle bounds,
ObjectTimeFinder.TimeFinderListener<O,I> listener)
Given a video, a keyframe (timecode) and a region of the image,
this method will attempt to track the the contents of the rectangle
from the given frame, back and forth to find the place
at which the object appears and disappears from the video.
|
Modifier and Type | Class and Description |
---|---|
class |
VideoFrameProcessor<I extends Image<?,I>>
This class is a
VideoProcessor that uses an ImageProcessor
for processing frames of a video. |
class |
VideoProcessor<T extends Image<?,T>>
A super class for classes which are able to process videos.
|
Modifier and Type | Method and Description |
---|---|
void |
VideoProcessor.process(Video<T> video)
Process the given video using this processor.
|
Constructor and Description |
---|
VideoFrameProcessor(Video<I> video,
ImageProcessor<I> processor)
Chainable constructor.
|
VideoProcessor(Video<T> v)
Constructor for creating a video processor which is chainable.
|
Modifier and Type | Class and Description |
---|---|
class |
FImageToMBFImageVideoTranslator
Converts an FImage video into an MBFImage video.
|
class |
MBFImageToFImageVideoTranslator
Converts an MBFImage video into an FImage video using intensity.
|
class |
VideoTranslator<INPUT extends Image<?,INPUT>,OUTPUT extends Image<?,OUTPUT>>
A video translator is a video processor where the input and output frame
types may be different.
|
Constructor and Description |
---|
FImageToMBFImageVideoTranslator(Video<FImage> in)
Create a translator using the input video.
|
MBFImageToFImageVideoTranslator(Video<MBFImage> in)
Construct using the input video.
|
VideoTranslator(Video<INPUT> in)
Construct a new VideoTranslator that will translate the given input
video.
|
Modifier and Type | Class and Description |
---|---|
class |
XuggleVideo
Wraps a Xuggle video reader into the OpenIMAJ
Video interface. |
class |
XuggleVideoWriter
An implementation of the video writer class that uses the Xuggler
video API to write videos.
|
Modifier and Type | Class and Description |
---|---|
class |
VideoVisualisation
This class provides a means for generating a video representation of a
visualisationImpl.
|
Modifier and Type | Method and Description |
---|---|
Video<MBFImage> |
VideoBarVisualisation.getVideo()
Return the data being shown by this bar.
|
Constructor and Description |
---|
ShotBoundaryVideoBarVisualisation(Video<MBFImage> video)
Default constructor that takes the video to visualise
|
VideoBarVisualisation(Video<MBFImage> video) |
VideoObjectVisualisation(Video<MBFImage> video) |
Modifier and Type | Class and Description |
---|---|
class |
VGetVideo
A wrapper around
VGet , which supports video download from youtube, vimeo
and a few other video sites. |
Modifier and Type | Class and Description |
---|---|
class |
AdaptiveMoGBackgroundEstimator<IMAGE extends Image<?,IMAGE> & SinglebandImageProcessor.Processable<Float,FImage,IMAGE>> |
Constructor and Description |
---|
AdaptiveMoGBackgroundEstimator(Video<IMAGE> xv) |