| 111 | typename T |
| 112 | > |
| 113 | py::list ht_find_pixels_voting_for_lines2 ( |
| 114 | const hough_transform& ht, |
| 115 | const numpy_image<T>& img, |
| 116 | const std::vector<point>& hough_points, |
| 117 | const unsigned long angle_window_size = 1, |
| 118 | const unsigned long radius_window_size = 1 |
| 119 | ) |
| 120 | { |
| 121 | return vector_to_python_list(ht.find_pixels_voting_for_lines(img, hough_points, angle_window_size, radius_window_size)); |
| 122 | } |
| 123 | |
| 124 | std::vector<point> ht_find_strong_hough_points( |
| 125 | hough_transform& ht, |
nothing calls this directly
no test coverage detected