mirror of
https://github.com/davisking/dlib.git
synced 2024-11-01 10:14:53 +08:00
Slightly relaxed the tolerance on the test that the user supplied
feature extraction is correctly programmed to avoid false alarms.
This commit is contained in:
parent
013eb467d1
commit
ff8191f38e
@ -411,7 +411,7 @@ namespace dlib
|
|||||||
|
|
||||||
#ifdef ENABLE_ASSERTS
|
#ifdef ENABLE_ASSERTS
|
||||||
const double psi_score = dot(psi, current_solution);
|
const double psi_score = dot(psi, current_solution);
|
||||||
DLIB_ASSERT(std::abs(psi_score-total_score)*std::max(psi_score,total_score) < 1e-10,
|
DLIB_ASSERT(std::abs(psi_score-total_score)*std::max(psi_score,total_score) < 1e-8,
|
||||||
"\t The get_feature_vector() and detect() methods of image_scanner_type are not in sync."
|
"\t The get_feature_vector() and detect() methods of image_scanner_type are not in sync."
|
||||||
<< "\n\t The relative error is too large to be attributed to rounding error."
|
<< "\n\t The relative error is too large to be attributed to rounding error."
|
||||||
<< "\n\t relative error: " << std::abs(psi_score-total_score)*std::max(psi_score,total_score)
|
<< "\n\t relative error: " << std::abs(psi_score-total_score)*std::max(psi_score,total_score)
|
||||||
|
Loading…
Reference in New Issue
Block a user