Class to load and save images from named files. More...
#include "vimt_image_pyramid_builder.h"
#include <vsl/vsl_indent.h>
#include <vsl/vsl_binary_loader.h>
Go to the source code of this file.
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. |
Class to load and save images from named files.
Definition in file vimt_image_pyramid_builder.cxx.
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.