libcrn
3.9.5
A document image processing library
|
#include <CRNException.h>
#include <CRNMath/CRNMath.h>
#include <vector>
#include <map>
#include <set>
#include <limits>
Go to the source code of this file.
Namespaces | |
crn | |
Functions | |
std::vector< double > | crn::ComputeLOF (const SquareMatrixDouble &distmat, size_t k) |
Compute the Local Outlier Factor for each element from the distance matrix. More... | |
std::vector< double > | crn::ComputeLOF (const std::vector< std::vector< double >> &distmat, size_t k) |
Compute the Local Outlier Factor for each element from the distance matrix. More... | |
std::vector< double > | crn::ComputeLoOP (const SquareMatrixDouble &distmat, size_t k, double lambda) |
compute the local outlier probability for each element from the distance matrix More... | |
std::vector< double > | crn::ComputeLoOP (const std::vector< std::vector< double >> &distmat, size_t k, double lambda) |
compute the local outlier probability for each element from the distance matrix More... | |
template<typename ITER > | |
std::vector< double > | crn::AngularOutliersE (ITER beg, ITER en) |
Outlier E statistics of a set of angles (Mardia, Statistics of directional data (with discussion), 1975) More... | |
template<typename ITER > | |
std::vector< double > | crn::AngularOutliersC (ITER beg, ITER en) |
Outlier C statistics of a set of angles (Collett, Outliers in circular data. Appl. Statist., 29, 50-57., 1980) More... | |