alyssaq / hough_transform

Hough Transform implementation in Python
127 stars 53 forks source link

using range in fast_hough_line instead xrange #9

Closed JabSYsEmb closed 2 years ago

JabSYsEmb commented 2 years ago

xrange() of fast_hough_line function is replaced with a range() function for the sack of Python3 compatibility. there isn't xrange in Python3.

Hough_transform_test.py : ...

Ran 3 tests in 0.074s

OK

alyssaq commented 2 years ago

Thanks!