Skip to content

Commit a6393d0

Browse files
committedSep 3, 2024·
Deopify StructuringElements
These Ops are not used, and there is ambiguity about how they might be used so let's punt on the decision to opify
1 parent 4836d65 commit a6393d0

File tree

1 file changed

+0
-9
lines changed

1 file changed

+0
-9
lines changed
 

‎src/main/java/net/imglib2/algorithm/morphology/StructuringElements.java

-9
Original file line numberDiff line numberDiff line change
@@ -88,7 +88,6 @@ public class StructuringElements
8888
* This methods relies on heuristics to determine automatically what
8989
* decomposition level to use.
9090
*
91-
* @implNote op name='create.disk', type=Function
9291
* @param radius
9392
* the radius of the disk, so that it extends over
9493
* {@code 2 × radius + 1} in all dimensions
@@ -146,7 +145,6 @@ else if ( radius < 17 )
146145
* select the level of approximation. For other dimensionalities, no
147146
* optimization are available yet and the parameter is ignored.
148147
*
149-
* @implNote op name='create.disk', type=Function
150148
* @param radius
151149
* the radius of the disk, so that it extends over
152150
* {@code 2 × radius + 1} in all dimensions
@@ -293,7 +291,6 @@ else if ( decomposition == 8 || decomposition == 4 || decomposition == 6 )
293291
* dimensionality and target dimensionality do not match. Non-decomposed
294292
* version are dimension-generic.
295293
*
296-
* @implNote op name='create.square', type=Function
297294
* @param radius
298295
* the radius of the square.
299296
* @param dimensionality
@@ -343,7 +340,6 @@ public static final List< Shape > square( final int radius, final int dimensiona
343340
* This method determines whether it is worth returning a decomposed strel
344341
* based on simple heuristics.
345342
*
346-
* @implNote op name='create.square', type=Function
347343
* @param radius
348344
* the radius of the square.
349345
* @param dimensionality
@@ -374,7 +370,6 @@ public static final List< Shape > square( final int radius, final int dimensiona
374370
* of orthogonal lines and yield the exact same results on any of the
375371
* morphological operations.
376372
*
377-
* @implNote op name='create.rectangle', type=Function
378373
* @param halfSpans
379374
* an {@code int[]} array containing the half-span of the
380375
* symmetric rectangle in each dimension. The total extent of the
@@ -428,7 +423,6 @@ public static final List< Shape > rectangle( final int[] halfSpans, final boolea
428423
* morphological operations. This method uses a simple heuristic to decide
429424
* whether to decompose the rectangle or not.
430425
*
431-
* @implNote op name='create.rectangle', type=Function
432426
* @param halfSpans
433427
* an {@code int[]} array containing the half-span of the
434428
* symmetric rectangle in each dimension. The total extent of the
@@ -484,7 +478,6 @@ public static final List< Shape > rectangle( final int halfSpans[] )
484478
* fall back on a linear decomposition, still very effective (see [1] as
485479
* well).
486480
*
487-
* @implNote op name='create.diamond', type=Function
488481
* @param radius
489482
* the desired radius of the diamond structuring element. The
490483
* strel will extend over {@code 2 × radius + 1} in all
@@ -534,7 +527,6 @@ public static final List< Shape > diamond( final int radius, final int dimension
534527
* fall back on a linear decomposition, still very effective (see [1] as
535528
* well).
536529
*
537-
* @implNote op name='create.diamond', type=Function
538530
* @param radius
539531
* the desired radius of the diamond structuring element. The
540532
* strel will extend over {@code 2 × radius + 1} in all
@@ -630,7 +622,6 @@ public static final List< Shape > diamond( final int radius, final int dimension
630622
*
631623
* The importance of periodic lines is explained in [1].
632624
*
633-
* @implNote op name='create.periodicLine', type=Function
634625
* @param span
635626
* the span of the neighborhood, so that it will iterate over
636627
* {@code 2 × span + 1} pixels.

0 commit comments

Comments
 (0)
Please sign in to comment.