Remove unused array

This commit is contained in:
Johannes Schönberger
2012-09-16 23:19:32 +02:00
parent b22d570ff9
commit 04fbee189e
-2
View File
@@ -361,9 +361,7 @@ def corner_subpix(image, corners, window_size=11, alpha=0.99):
# coordinates of pixels within window
y, x = np.mgrid[- wext:wext + 1, - wext:wext + 1]
# output arrays
corners_subpix = np.zeros_like(corners, dtype=np.double)
corners_class = np.zeros(corners.shape[0], dtype=np.int8)
for i, (y0, x0) in enumerate(corners):