Base class for objects which build image pyramids. More...
Go to the source code of this file.
Classes | |
class | vimt_image_pyramid_builder |
Base class for objects which build image pyramids. More... | |
Functions | |
void | vsl_add_to_binary_loader (const vimt_image_pyramid_builder &b) |
Allows derived class to be loaded by base-class pointer. | |
void | vsl_b_write (vsl_b_ostream &bfs, const vimt_image_pyramid_builder &b) |
Binary file stream output operator for class reference. | |
void | vsl_b_read (vsl_b_istream &bfs, vimt_image_pyramid_builder &b) |
Binary file stream input operator for class reference. | |
vcl_ostream & | operator<< (vcl_ostream &os, const vimt_image_pyramid_builder &b) |
Stream output operator for class reference. | |
vcl_ostream & | operator<< (vcl_ostream &os, const vimt_image_pyramid_builder *b) |
Stream output operator for class pointer. |
Base class for objects which build image pyramids.
Definition in file vimt_image_pyramid_builder.h.
vcl_ostream& operator<< | ( | vcl_ostream & | os, |
const vimt_image_pyramid_builder & | b | ||
) |
Stream output operator for class reference.
Definition at line 67 of file vimt_image_pyramid_builder.cxx.
vcl_ostream& operator<< | ( | vcl_ostream & | os, |
const vimt_image_pyramid_builder * | b | ||
) |
Stream output operator for class pointer.
Definition at line 78 of file vimt_image_pyramid_builder.cxx.
void vsl_add_to_binary_loader | ( | const vimt_image_pyramid_builder & | b | ) |
Allows derived class to be loaded by base-class pointer.
A loader object exists which is invoked by calls of the form "vsl_b_read(bfs,base_ptr);". This loads derived class objects from the disk, places them on the heap and returns a base class pointer. In order to work the loader object requires an instance of each derived class that might be found. This function gives the model class to the appropriate loader.
Definition at line 32 of file vimt_image_pyramid_builder.cxx.
void vsl_b_read | ( | vsl_b_istream & | bfs, |
vimt_image_pyramid_builder & | b | ||
) |
Binary file stream input operator for class reference.
Definition at line 60 of file vimt_image_pyramid_builder.cxx.
void vsl_b_write | ( | vsl_b_ostream & | bfs, |
const vimt_image_pyramid_builder & | b | ||
) |
Binary file stream output operator for class reference.
Definition at line 53 of file vimt_image_pyramid_builder.cxx.