From e0e4f697de8fc7f32ef3e998e18002f7543a0261 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Johannes=20Sch=C3=B6nberger?= Date: Sun, 1 Dec 2013 10:59:21 +0100 Subject: [PATCH] Fix parameter list in doc string of plot_matches --- skimage/feature/util.py | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/skimage/feature/util.py b/skimage/feature/util.py index 7e31dace..6d824ef3 100644 --- a/skimage/feature/util.py +++ b/skimage/feature/util.py @@ -46,12 +46,10 @@ def plot_matches(ax, image1, image2, keypoints1, keypoints2, First grayscale or color image. image2 : (N, M [, 3]) array Second grayscale or color image. - keypoints : (K1, 2) array + keypoints1 : (K1, 2) array First keypoint coordinates as ``(row, col)``. - keypoints : (K2, 2) array + keypoints2 : (K2, 2) array Second keypoint coordinates as ``(row, col)``. - keypoints : (K1, 2) array - Keypoint coordinates as ``(row, col)``. indices1 : (Q, ) array Indices of corresponding matches for first set of keypoints. indices2 : (Q, ) array