Commit 96f3016a authored by Davis King's avatar Davis King

The nu parameter of the shape_predictor must be in the range (0,1].

I changed the spec to reflect this.
parent 37af35b5
...@@ -461,7 +461,7 @@ namespace dlib ...@@ -461,7 +461,7 @@ namespace dlib
double nu double nu
) )
{ {
DLIB_CASSERT(nu > 0, DLIB_CASSERT(0 < nu <= 1,
"\t void shape_predictor_trainer::set_nu()" "\t void shape_predictor_trainer::set_nu()"
<< "\n\t Invalid inputs were given to this function. " << "\n\t Invalid inputs were given to this function. "
<< "\n\t nu: " << nu << "\n\t nu: " << nu
......
...@@ -185,7 +185,7 @@ namespace dlib ...@@ -185,7 +185,7 @@ namespace dlib
); );
/*! /*!
requires requires
- nu > 0 - 0 < nu <= 1
ensures ensures
- #get_nu() == nu - #get_nu() == nu
!*/ !*/
......
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