|
template<class T > |
std::ostream & | dirac::operator<< (std::ostream &stream, MotionVector< T > &mv) |
| Overloaded operator<< for MotionVector class for output to stream. More...
|
|
template<class T > |
std::istream & | dirac::operator>> (std::istream &stream, MotionVector< T > &mv) |
| Overloaded operator>> for MotionVector class for input from stream. More...
|
|
int | dirac::Median (const int val1, const int val2, const int val3) |
| Return the median of 3 integers. More...
|
|
MVector | dirac::MvMedian (const MVector &mv1, const MVector &mv2, const MVector &mv3) |
| Return the median of three motion vectors. More...
|
|
int | dirac::Median (const std::vector< int > &val_list) |
| Return the median of a set of integers. More...
|
|
MVector | dirac::MvMedian (const std::vector< MVector > &vect_list) |
| Return the median of a set of (up to 4) motion vectors. More...
|
|
MVector | dirac::MvMean (const MVector &mv1, const MVector &mv2) |
| Return the mean of two motion vectors. More...
|
|
int | dirac::Norm2 (const MVector &mv) |
| Return the squared length of a motion vector. More...
|
|
int | dirac::Norm1 (const MVector &mv) |
| Return the sum of the lengths of a motion vector's componets. More...
|
|
unsigned int | dirac::GetUMean (std::vector< unsigned int > &values) |
| Return the mean of a set of unsigned integer values. More...
|
|
int | dirac::GetSMean (std::vector< int > &values) |
| Return the mean of a set of signed integer values. More...
|
|