Use new regionprops interface in hough_line_peaks

This commit is contained in:
Johannes Schönberger
2014-04-11 10:42:39 -04:00
parent 6a0d81a047
commit e9f690d598
+2 -2
View File
@@ -72,8 +72,8 @@ def hough_line_peaks(hspace, angles, dists, min_distance=9, min_angle=10,
hspace_t = hspace > threshold
label_hspace = morphology.label(hspace_t)
props = measure.regionprops(label_hspace, ['Centroid'])
coords = np.array([np.round(p['Centroid']) for p in props], dtype=int)
props = measure.regionprops(label_hspace)
coords = np.array([np.round(p.centroid) for p in props], dtype=int)
hspace_peaks = []
dist_peaks = []