dLife Home Page

Uses of Class
dlife.vision.VideoSourceCreationFailedException

Packages that use VideoSourceCreationFailedException
dlife.robot.hemisson Classes and interfaces that support interaction with a Hemisson robot. 
dlife.robot.khepera2 Classes and interfaces that support interaction with a Khepera2 robot. 
dlife.robot.pioneer Classes and interfaces that support interaction with the Pioneer robot. 
dlife.vision.cameras A collection of Camera sub-classes for different sources of images (single images, sequence of images, streaming video, etc...). 
dlife.vision.cameras.sources A collection of VideoSource sub-classes for different sources of images (single images, sequence of images, streaming video, etc...). 
 

Uses of VideoSourceCreationFailedException in dlife.robot.hemisson
 

Constructors in dlife.robot.hemisson that throw VideoSourceCreationFailedException
HemissonCamera()
          Create a new HemissonCamera.
 

Uses of VideoSourceCreationFailedException in dlife.robot.khepera2
 

Constructors in dlife.robot.khepera2 that throw VideoSourceCreationFailedException
Khepera2Camera()
          Create a new Khepera2Camera.
 

Uses of VideoSourceCreationFailedException in dlife.robot.pioneer
 

Constructors in dlife.robot.pioneer that throw VideoSourceCreationFailedException
PioneerCamera()
          Create a new PioneerCamera.
 

Uses of VideoSourceCreationFailedException in dlife.vision.cameras
 

Methods in dlife.vision.cameras that throw VideoSourceCreationFailedException
static void SingleImageCamera.main(String[] args)
          Display the GUI for a Camera using a single image as the video source.
static void ImageSequenceCamera.main(String[] args)
          Display the GUI for a Camera using a sequence of images as the video source.
static void DLifeVisionServerCamera.main(String[] args)
          Display the GUI for a Camera that streams video from a dLife vision server.
 

Constructors in dlife.vision.cameras that throw VideoSourceCreationFailedException
DLifeVisionServerCamera()
          Construct a new DLifeVisionServerCamera that prompts the user to choose an image to use.
ImageSequenceCamera()
          Construct a new ImageSequenceCamera that prompts the user to choose a directory containing the images to use.
ImageSequenceCamera(String path)
          Construct a new ImageSequenceCamera using the files in the directory specified by file.
SingleImageCamera()
          Construct a new SingleImageCamera that prompts the user to choose an image to use.
SingleImageCamera(URL path)
          Construct a new SingleImageCamera using the file specified by the given URL.
 

Uses of VideoSourceCreationFailedException in dlife.vision.cameras.sources
 

Constructors in dlife.vision.cameras.sources that throw VideoSourceCreationFailedException
DLifeVisionServerVideoSource()
          Create a DLifeVisionServerVideoSource using a GUI to select the video source from a given dLife VisionServer.
ImageSequenceVideoSource()
          Construct a new ImageSequenceVideoSource by allowing the user to select a directory of files using a file chooser dialog.
ImageSequenceVideoSource(String directory)
          Construct a new ImageVideoSequence using all of the image files contained in the specified directory.
ImageVideoSource()
          Use a JFileChooser to allow the user to select the image file to be used for this ImageVideoSource.
ImageVideoSource(URL imageURL)
          Construct a new ImageVideoSource for the image at the specified URL.
 


dLife Home Page