Skip to content

Commit 2e8f6b8

Browse files
committed
VoteLines: Fix javadoc
1 parent f1188a9 commit 2e8f6b8

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

src/main/java/net/imglib2/algorithm/hough/HoughTransforms.java

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -52,8 +52,9 @@
5252
import net.imglib2.view.Views;
5353

5454
/**
55-
* This abstract class provides some basic functionality for use with arbitrary
56-
* Hough-like transforms.
55+
*
56+
* This class provides static methods used to detect imperfect shapes in
57+
* two-dimensional images through the use of the Hough Transform.
5758
*
5859
* @param <T>
5960
* the data type of the input image.
@@ -322,9 +323,9 @@ public static < T extends Comparable< T >, U extends IntegerType< U > > void vot
322323
* It is important to note that the interval of the first dimension of the
323324
* vote space image is NOT {@code [-maxRho, maxRho)} but instead
324325
* {@code [0, maxRho * 2)}; the same applies to the second dimension of the
325-
* vote space as well. Thus if {@link HoughTransforms#pickPeaks} is not used
326-
* to retrieve the maxima from the vote space, the vote space will have to
327-
* be translated by {@code -maxRho} in dimension 0 to get the correct
326+
* vote space as well. Thus if {@link HoughTransforms#pickLinePeaks} is not
327+
* used to retrieve the maxima from the vote space, the vote space will have
328+
* to be translated by {@code -maxRho} in dimension 0 to get the correct
328329
* {@code rho} and {@code theta} values from the vote space.
329330
* </p>
330331
*

0 commit comments

Comments
 (0)