#include <vtkGenericMovieWriter.h>
Public Types | |
typedef vtkProcessObject | Superclass |
Public Member Functions | |
virtual const char * | GetClassName () |
virtual int | IsA (const char *type) |
void | PrintSelf (ostream &os, vtkIndent indent) |
virtual void | SetInput (vtkImageData *input) |
virtual vtkImageData * | GetInput () |
virtual void | SetFileName (const char *) |
virtual char * | GetFileName () |
virtual void | Start ()=0 |
virtual void | Write ()=0 |
virtual void | End ()=0 |
virtual int | GetError () |
Static Public Member Functions | |
static int | IsTypeOf (const char *type) |
static vtkGenericMovieWriter * | SafeDownCast (vtkObject *o) |
Protected Member Functions | |
vtkGenericMovieWriter () | |
~vtkGenericMovieWriter () | |
Protected Attributes | |
char * | FileName |
int | Error |
vtkGenericMovieWriter is the abstract base class for several movie writers. The input type is a vtkImageData. The Start() method will open and create the file, the Write() method will output a frame to the file (i.e. the contents of the vtkImageData), End() will finalize and close the file.
Definition at line 34 of file vtkGenericMovieWriter.h.
Reimplemented from vtkProcessObject.
Reimplemented in vtkAVIWriter, and vtkMPEG2Writer.
Definition at line 37 of file vtkGenericMovieWriter.h.
vtkGenericMovieWriter::vtkGenericMovieWriter | ( | ) | [protected] |
vtkGenericMovieWriter::~vtkGenericMovieWriter | ( | ) | [protected] |
virtual const char* vtkGenericMovieWriter::GetClassName | ( | ) | [virtual] |
static int vtkGenericMovieWriter::IsTypeOf | ( | const char * | name | ) | [static] |
Return 1 if this class type is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkProcessObject.
Reimplemented in vtkAVIWriter, and vtkMPEG2Writer.
virtual int vtkGenericMovieWriter::IsA | ( | const char * | name | ) | [virtual] |
Return 1 if this class is the same type of (or a subclass of) the named class. Returns 0 otherwise. This method works in combination with vtkTypeRevisionMacro found in vtkSetGet.h.
Reimplemented from vtkProcessObject.
Reimplemented in vtkAVIWriter, and vtkMPEG2Writer.
static vtkGenericMovieWriter* vtkGenericMovieWriter::SafeDownCast | ( | vtkObject * | o | ) | [static] |
void vtkGenericMovieWriter::PrintSelf | ( | ostream & | os, | |
vtkIndent | indent | |||
) | [virtual] |
Methods invoked by print to print information about the object including superclasses. Typically not called by the user (use Print() instead) but used in the hierarchical print process to combine the output of several classes.
Reimplemented from vtkProcessObject.
Reimplemented in vtkAVIWriter, and vtkMPEG2Writer.
virtual void vtkGenericMovieWriter::SetInput | ( | vtkImageData * | input | ) | [virtual] |
Set/Get the input object from the image pipeline.
virtual vtkImageData* vtkGenericMovieWriter::GetInput | ( | ) | [virtual] |
Set/Get the input object from the image pipeline.
virtual void vtkGenericMovieWriter::SetFileName | ( | const char * | ) | [virtual] |
Specify file name of avi file.
virtual char* vtkGenericMovieWriter::GetFileName | ( | ) | [virtual] |
Specify file name of avi file.
virtual void vtkGenericMovieWriter::Start | ( | ) | [pure virtual] |
These methods start writing an Movie file, write a frame to the file and then end the writing process.
Implemented in vtkAVIWriter, and vtkMPEG2Writer.
virtual void vtkGenericMovieWriter::Write | ( | ) | [pure virtual] |
These methods start writing an Movie file, write a frame to the file and then end the writing process.
Implemented in vtkAVIWriter, and vtkMPEG2Writer.
virtual void vtkGenericMovieWriter::End | ( | ) | [pure virtual] |
These methods start writing an Movie file, write a frame to the file and then end the writing process.
Implemented in vtkAVIWriter, and vtkMPEG2Writer.
virtual int vtkGenericMovieWriter::GetError | ( | ) | [virtual] |
Was there an error on the last read performed?
char* vtkGenericMovieWriter::FileName [protected] |
Definition at line 69 of file vtkGenericMovieWriter.h.
int vtkGenericMovieWriter::Error [protected] |
Definition at line 70 of file vtkGenericMovieWriter.h.