Base for objects which perform some form of linear component analysis. More...
#include <vsl/vsl_fwd.h>
#include <vcl_string.h>
#include <vcl_memory.h>
#include <vnl/vnl_vector.h>
#include <vnl/vnl_matrix.h>
#include <mbl/mbl_data_wrapper.h>
#include <vcl_iosfwd.h>
Go to the source code of this file.
Classes | |
class | mcal_component_analyzer |
Base for objects which perform some form of linear component analysis. More... | |
Functions | |
void | vsl_add_to_binary_loader (const mcal_component_analyzer &b) |
Allows derived class to be loaded by base-class pointer. | |
void | vsl_b_write (vsl_b_ostream &bfs, const mcal_component_analyzer &b) |
Binary file stream output operator for class reference. | |
void | vsl_b_read (vsl_b_istream &bfs, mcal_component_analyzer &b) |
Binary file stream input operator for class reference. | |
vcl_ostream & | operator<< (vcl_ostream &os, const mcal_component_analyzer &b) |
Stream output operator for class reference. | |
vcl_ostream & | operator<< (vcl_ostream &os, const mcal_component_analyzer *b) |
Stream output operator for class pointer. |
Base for objects which perform some form of linear component analysis.
Definition in file mcal_component_analyzer.h.
vcl_ostream& operator<< | ( | vcl_ostream & | os, |
const mcal_component_analyzer & | b | ||
) |
Stream output operator for class reference.
Definition at line 141 of file mcal_component_analyzer.cxx.
vcl_ostream& operator<< | ( | vcl_ostream & | os, |
const mcal_component_analyzer * | b | ||
) |
Stream output operator for class pointer.
Definition at line 154 of file mcal_component_analyzer.cxx.
void vsl_add_to_binary_loader | ( | const mcal_component_analyzer & | 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 69 of file mcal_component_analyzer.cxx.
void vsl_b_read | ( | vsl_b_istream & | bfs, |
mcal_component_analyzer & | b | ||
) |
Binary file stream input operator for class reference.
Definition at line 132 of file mcal_component_analyzer.cxx.
void vsl_b_write | ( | vsl_b_ostream & | bfs, |
const mcal_component_analyzer & | b | ||
) |
Binary file stream output operator for class reference.
Definition at line 123 of file mcal_component_analyzer.cxx.