Source: HMM/include/gaussian_set.h
|
|
|
|
// Copyright (C) 1998-1999 Jean-Marc Valin
#ifndef GAUSSIAN_SET_H
#define GAUSSIAN_SET_H
#include "gaussian.h"
#include "mean_set.h"
#include "covariance_set.h"
#include "Object.h"
class GaussianSet : public Object {
protected:
int nb_gaussians;
Vector<RCPtr<Gaussian> > gaussians;
public:
/**Default Constructor*/
GaussianSet()
: nb_gaussians(0)
{};
/**Returns the id corresponding to the pointer (or add if absent)*/
int getIDFor(RCPtr<Gaussian>);
/**Returns the pointer corresponding to the id*/
RCPtr<Gaussian> getPtrFor(int id) const;
/**convert all elements to using IDs (before saving)*/
void toIDs(MeanSet & means, CovarianceSet & covariances);
/**convert all elements to using Ptrs (after loading)*/
void toPtrs(const MeanSet & means, const CovarianceSet & covariances) const;
/** print function used for operator << */
virtual void printOn(ostream &out=cout) const;
/**Read function used for operator >> */
void readFrom (istream &in=cin);
/**extractor operator*/
friend istream &operator >> (istream &in, GaussianSet &cov);
};
#endif
Generated by: jmvalin@usw-pr-shell2 on Mon Jun 24 00:06:40 2002, using kdoc 2.0a40. |