Commit 97878da5 authored by Alexander Alekhin's avatar Alexander Alekhin

Merge pull request #1732 from alalek:fix_debug_build

parents 645ca12d 2203743c
...@@ -935,8 +935,8 @@ int fit_quad(const Ptr<DetectorParameters> &_params, const Mat im, zarray_t *clu ...@@ -935,8 +935,8 @@ int fit_quad(const Ptr<DetectorParameters> &_params, const Mat im, zarray_t *clu
double x = lines[i1][0] - L1*A01; double x = lines[i1][0] - L1*A01;
double y = lines[i1][1] - L1*A11; double y = lines[i1][1] - L1*A11;
CV_Assert(fabs(x - quad->p[i][0]) < 0.001, CV_Assert(fabs(x - quad->p[i][0]) < 0.001);
fabs(y - quad->p[i][1]) < 0.001); CV_Assert(fabs(y - quad->p[i][1]) < 0.001);
} }
#endif // NDEBUG #endif // NDEBUG
......
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