Commit 3faaa0b8 authored by Davis King's avatar Davis King

Minor adjustments to avoid false alarms in cca test.

parent 96881874
...@@ -236,7 +236,7 @@ namespace ...@@ -236,7 +236,7 @@ namespace
// non-matching pairs of projections. // non-matching pairs of projections.
const double corr_rot1_error = max(abs(compute_correlations(rm_zeros(L*rotate<0,1>(Ltrans)), rm_zeros(R*Rtrans)))); const double corr_rot1_error = max(abs(compute_correlations(rm_zeros(L*rotate<0,1>(Ltrans)), rm_zeros(R*Rtrans))));
dlog << LINFO << "corr_rot1_error: "<< corr_rot1_error; dlog << LINFO << "corr_rot1_error: "<< corr_rot1_error;
DLIB_TEST(std::abs(corr_rot1_error) < 1e-10); DLIB_TEST(std::abs(corr_rot1_error) < 2e-9);
} }
// Matching projection directions should be correlated with the amount of // Matching projection directions should be correlated with the amount of
// correlation indicated by the return value of cca(). // correlation indicated by the return value of cca().
...@@ -246,7 +246,7 @@ namespace ...@@ -246,7 +246,7 @@ namespace
const double trans_error = max(abs(L*Ltrans - R*Rtrans)); const double trans_error = max(abs(L*Ltrans - R*Rtrans));
dlog << LINFO << "trans_error: "<< trans_error; dlog << LINFO << "trans_error: "<< trans_error;
DLIB_TEST(trans_error < 1e-10); DLIB_TEST(trans_error < 2e-9);
dlog << LINFO << "correlations: "<< trans(correlations); dlog << LINFO << "correlations: "<< trans(correlations);
} }
...@@ -259,7 +259,7 @@ namespace ...@@ -259,7 +259,7 @@ namespace
// non-matching pairs of projections. // non-matching pairs of projections.
const double corr_rot1_error = max(abs(compute_correlations(rm_zeros(L*rotate<0,1>(Ltrans)), rm_zeros(R*Rtrans)))); const double corr_rot1_error = max(abs(compute_correlations(rm_zeros(L*rotate<0,1>(Ltrans)), rm_zeros(R*Rtrans))));
dlog << LINFO << "corr_rot1_error: "<< corr_rot1_error; dlog << LINFO << "corr_rot1_error: "<< corr_rot1_error;
DLIB_TEST(std::abs(corr_rot1_error) < 1e-10); DLIB_TEST(std::abs(corr_rot1_error) < 2e-9);
} }
// Matching projection directions should be correlated with the amount of // Matching projection directions should be correlated with the amount of
// correlation indicated by the return value of cca(). // correlation indicated by the return value of cca().
...@@ -269,7 +269,7 @@ namespace ...@@ -269,7 +269,7 @@ namespace
const double trans_error = max(abs(L*Ltrans - R*Rtrans)); const double trans_error = max(abs(L*Ltrans - R*Rtrans));
dlog << LINFO << "trans_error: "<< trans_error; dlog << LINFO << "trans_error: "<< trans_error;
DLIB_TEST(trans_error < 1e-9); DLIB_TEST(trans_error < 2e-9);
dlog << LINFO << "correlations: "<< trans(correlations); dlog << LINFO << "correlations: "<< trans(correlations);
} }
......
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