Commit eb9e8675 authored by Davis King's avatar Davis King

Made the compute_mean_squared_distance() function capable of operating on

containers other than std::vector.

--HG--
extra : convert_revision : svn%3Afdd8eb12-d10e-0410-9acb-85c331704f74/trunk%403429
parent 780f16d1
...@@ -452,11 +452,10 @@ namespace dlib ...@@ -452,11 +452,10 @@ namespace dlib
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
template < template <
typename T, typename vector_type
typename alloc
> >
double compute_mean_squared_distance ( double compute_mean_squared_distance (
const std::vector<T,alloc>& samples const vector_type& samples
) )
{ {
running_stats<double> rs; running_stats<double> rs;
......
...@@ -110,16 +110,16 @@ namespace dlib ...@@ -110,16 +110,16 @@ namespace dlib
// ---------------------------------------------------------------------------------------- // ----------------------------------------------------------------------------------------
template < template <
typename T, typename vector_type
typename alloc
> >
double compute_mean_squared_distance ( double compute_mean_squared_distance (
const std::vector<T,alloc>& samples const vector_type& samples
); );
/*! /*!
requires requires
- T is a dlib::matrix type which contains scalars such as float or double - vector_type is something with an interface compatible with std::vector.
values. Additionally, it must in turn contain dlib::matrix types which contain
scalars such as float or double values.
- for all valid i: is_vector(samples[i]) == true - for all valid i: is_vector(samples[i]) == true
ensures ensures
- computes the average value of the squares of all the pairwise - computes the average value of the squares of all the pairwise
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment