Commit a60be341 authored by Davis King's avatar Davis King

Fixed busted assert.

parent 8fdb3af9
...@@ -80,13 +80,13 @@ point ht_get_best_hough_point ( ...@@ -80,13 +80,13 @@ point ht_get_best_hough_point (
const numpy_image<float>& himg const numpy_image<float>& himg
) )
{ {
DLIB_ASSERT(himg.nr() == size() && himg.nc() == ht.size() && DLIB_CASSERT(num_rows(himg) == ht.size() && num_columns(himg) == ht.size() &&
get_rect(ht).contains(p) == true, get_rect(ht).contains(p) == true,
"\t point hough_transform::get_best_hough_point()" "\t point hough_transform::get_best_hough_point()"
<< "\n\t Invalid arguments given to this function." << "\n\t Invalid arguments given to this function."
<< "\n\t himg.nr(): " << himg.nr() << "\n\t num_rows(himg): " << num_rows(himg)
<< "\n\t himg.nc(): " << himg.nc() << "\n\t num_columns(himg): " << num_columns(himg)
<< "\n\t size(): " << size() << "\n\t size(): " << ht.size()
<< "\n\t p: " << p << "\n\t p: " << p
); );
return ht.get_best_hough_point(p,himg); return ht.get_best_hough_point(p,himg);
......
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