| 96 | typename T |
| 97 | > |
| 98 | py::list ht_find_pixels_voting_for_lines ( |
| 99 | const hough_transform& ht, |
| 100 | const numpy_image<T>& img, |
| 101 | const rectangle& box, |
| 102 | const std::vector<point>& hough_points, |
| 103 | const unsigned long angle_window_size = 1, |
| 104 | const unsigned long radius_window_size = 1 |
| 105 | ) |
| 106 | { |
| 107 | return vector_to_python_list(ht.find_pixels_voting_for_lines(img, box, hough_points, angle_window_size, radius_window_size)); |
| 108 | } |
| 109 | |
| 110 | template < |
| 111 | typename T |
nothing calls this directly
no test coverage detected