Hi,
When running evaluate_line_detection.py, an IndexError occurs due to match_lines().
The my_matches array of type float, because the pytlbd.lbd_matching_multiscale() also returns descriptor distances.
So would raise IndexError: arrays used as indices must be of integer (or boolean) type
Hi, When running
evaluate_line_detection.py
, an IndexError occurs due to match_lines(). Themy_matches
array of type float, because thepytlbd.lbd_matching_multiscale()
also returns descriptor distances. So would raiseIndexError: arrays used as indices must be of integer (or boolean) type
To fix this issue, replace line 66 with:
Finally, Your work has been incredibly helpful to me.