@@ -106,7 +106,6 @@ private static int defaultRho( final Dimensions dimensions )
106106 * Returns the size of the vote space output image given an input
107107 * {@link RandomAccessibleInterval}.
108108 *
109- * @implNote op names='features.hough.getVotespaceSize', type=Function
110109 * @param dimensions
111110 * - the {@link Dimensions} over which the Hough Line Transform
112111 * will be run
@@ -121,7 +120,6 @@ public static long[] getVotespaceSize( final Dimensions dimensions )
121120 * Returns the size of the vote space output image given an input
122121 * {@link RandomAccessibleInterval}.
123122 *
124- * @implNote op names='features.hough.getVotespaceSize', type=Function
125123 * @param dimensions
126124 * - the {@link Dimensions} over which the Hough Line Transform
127125 * will be run
@@ -138,7 +136,6 @@ public static long[] getVotespaceSize( final Dimensions dimensions, final int nT
138136 * Returns the size of the voteSpace output image given desired {@code nRho}
139137 * and {@code nTheta} values.
140138 *
141- * @implNote op names='features.hough.getVotespaceSize', type=Function
142139 * @param nRho
143140 * - the number of bins for rho resolution
144141 * @param nTheta
@@ -153,7 +150,6 @@ public static long[] getVotespaceSize( final int nRho, final int nTheta )
153150 /**
154151 * Pick vote space peaks with a {@link LocalExtrema}.
155152 *
156- * @implNote op names='features.hough.pickPeaks', type=Function
157153 * @param voteSpace
158154 * - the {@link RandomAccessibleInterval} containing the output
159155 * of a Hough Transform vote
@@ -175,7 +171,6 @@ public static < T extends IntegerType< T > > List< Point > pickLinePeaks(
175171 /**
176172 * Pick vote space peaks with a {@link LocalExtrema}.
177173 *
178- * @implNote op names='features.hough.pickPeaks', type=Function
179174 * @param voteSpace
180175 * - the {@link RandomAccessibleInterval} containing the output
181176 * of a Hough Transform vote
@@ -207,8 +202,6 @@ public static < T extends Comparable< T > > List< Point > pickLinePeaks(
207202 * Runs a Hough Line Tranform on an image and populates the vote space
208203 * parameter with the results.
209204 *
210- * @implNote op names='features.hough.voteLines',
211- * type=Computer
212205 * @param input
213206 * - the {@link RandomAccessibleInterval} to run the Hough Line
214207 * Transform over
@@ -235,7 +228,6 @@ public static < T extends Comparable< T >, U extends IntegerType< U > > void vot
235228 * are stored
236229 * @param nTheta
237230 * - the number of bins for theta resolution
238- * @implNote op name='features.hough.voteLines', type=Computer2
239231 */
240232 public static < T extends Comparable < T >, U extends IntegerType < U > > void voteLines (
241233 final RandomAccessibleInterval < T > input ,
@@ -280,7 +272,6 @@ private static <T> T getTypeFromInterval( RandomAccessibleInterval< T > rai )
280272 * - the number of bins for theta resolution
281273 * @param nRho
282274 * - the number of bins for rho resolution
283- * @implNote op names='features.hough.voteLines', type=Computer2
284275 */
285276 public static < T extends Comparable < T >, U extends IntegerType < U > > void voteLines (
286277 final RandomAccessibleInterval < T > input ,
@@ -308,7 +299,6 @@ public static < T extends Comparable< T >, U extends IntegerType< U > > void vot
308299 * @param threshold
309300 * - the minimum value allowed by the populator. Any input less
310301 * than this value will be disregarded by the populator.
311- * @implNote op name='features.hough.voteLines', type=Computer2
312302 */
313303 public static < T extends Comparable < T >, U extends IntegerType < U > > void voteLines (
314304 final RandomAccessibleInterval < T > input ,
@@ -376,7 +366,6 @@ public static < T extends Comparable< T >, U extends IntegerType< U > > void vot
376366 * above the minimum value allowed by the populator. Any input
377367 * less than or equal to this value will be disregarded by the
378368 * populator.
379- * @implNote op name='features.hough.voteLines', type=Computer2
380369 */
381370 public static < T , U extends IntegerType < U > > void voteLines (
382371 final RandomAccessibleInterval < T > input ,
@@ -442,7 +431,6 @@ public static < T, U extends IntegerType< U > > void voteLines(
442431 * y-intercept value. Used with {@link HoughTransforms#getSlope} to create
443432 * line equations.
444433 *
445- * @implNote op name='features.hough.intercept', type=Function
446434 * @param rho
447435 * - the {@code rho} of the line
448436 * @param theta
@@ -461,7 +449,6 @@ public static double getIntercept( final long rho, final long theta )
461449 * value. Used with {@link HoughTransforms#getIntercept} to create line
462450 * equations.
463451 *
464- * @implNote op name='features.hough.slope', type=Function
465452 * @param theta
466453 * - the {@code theta} of the line
467454 * @return {@code double} - the y-intercept of the line
0 commit comments