Skip to content

Commit 3536c48

Browse files
committed
Implement getters for construction parameters in all Shapes
Closes #5. Signed-off-by: squareys <[email protected]>
1 parent e4e5fdc commit 3536c48

8 files changed

+155
-2
lines changed

src/main/java/net/imglib2/algorithm/neighborhood/CenteredRectangleShape.java

+19
Original file line numberDiff line numberDiff line change
@@ -61,6 +61,7 @@
6161
*
6262
* @author Tobias Pietzsch <[email protected]>
6363
* @author Jean-Yves Tinevez <[email protected]>
64+
* @author Jonathan Hale (University of Konstanz)
6465
*/
6566
public class CenteredRectangleShape implements Shape
6667
{
@@ -119,6 +120,24 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
119120
return new NeighborhoodsAccessible< T >( source, spanInterval, f );
120121
}
121122

123+
/**
124+
* @return <code>true</code> if <code>skipCenter</code> was set to true
125+
* during construction, <code>false</code> otherwise.
126+
* @see CenteredRectangleShape#CenteredRectangleShape(int[], boolean)
127+
*/
128+
public boolean isSkippingCenter()
129+
{
130+
return skipCenter;
131+
}
132+
133+
/**
134+
* @return Copy of the span of this shape.
135+
*/
136+
public int[] getSpan()
137+
{
138+
return span.clone();
139+
}
140+
122141
@Override
123142
public String toString()
124143
{

src/main/java/net/imglib2/algorithm/neighborhood/DiamondShape.java

+21
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,23 @@
1212
import net.imglib2.RandomAccessible;
1313
import net.imglib2.RandomAccessibleInterval;
1414

15+
/**
16+
* TODO
17+
*
18+
* @author Jean-Yves Tinevez <[email protected]>
19+
* @author Jonathan Hale (University of Konstanz)
20+
*/
1521
public class DiamondShape implements Shape
1622
{
1723

1824
private final long radius;
1925

26+
/**
27+
* Constructor
28+
*
29+
* @param radius
30+
* Radius for the diamond shape.
31+
*/
2032
public DiamondShape( final long radius )
2133
{
2234
this.radius = radius;
@@ -47,6 +59,15 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
4759
return new NeighborhoodsAccessible< T >( source, radius, DiamondNeighborhood.< T >factory() );
4860
}
4961

62+
/**
63+
* @return Radius of this shape.
64+
* @see DiamondShape#DiamondShape(long)
65+
*/
66+
public long getRadius()
67+
{
68+
return radius;
69+
}
70+
5071
@Override
5172
public String toString()
5273
{

src/main/java/net/imglib2/algorithm/neighborhood/DiamondTipsShape.java

+22
Original file line numberDiff line numberDiff line change
@@ -12,11 +12,24 @@
1212
import net.imglib2.RandomAccessible;
1313
import net.imglib2.RandomAccessibleInterval;
1414

15+
16+
/**
17+
* TODO
18+
*
19+
* @author Jean-Yves Tinevez <[email protected]>
20+
* @author Jonathan Hale (University of Konstanz)
21+
*/
1522
public class DiamondTipsShape implements Shape
1623
{
1724

1825
private final long radius;
1926

27+
/**
28+
* Constructor
29+
*
30+
* @param radius
31+
* Radius for the diamond shape.
32+
*/
2033
public DiamondTipsShape( final long radius )
2134
{
2235
this.radius = radius;
@@ -48,6 +61,15 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
4861
return new NeighborhoodsAccessible< T >( source, radius, f );
4962
}
5063

64+
/**
65+
* @return Radius of this shape.
66+
* @see DiamondTipsShape#DiamondTipsShape(long)
67+
*/
68+
public long getRadius()
69+
{
70+
return radius;
71+
}
72+
5173
@Override
5274
public String toString()
5375
{

src/main/java/net/imglib2/algorithm/neighborhood/HorizontalLineShape.java

+28-1
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,8 @@
1616
* A {@link Shape} representing finite, centered, symmetric lines, that are
1717
* parallel to the image axes.
1818
*
19-
* @author Jean-Yves Tinevez <[email protected]>
19+
* @author Jean-Yves Tinevez <[email protected]>#
20+
* @author Jonathan Hale (University of Konstanz)
2021
*/
2122
public class HorizontalLineShape implements Shape
2223
{
@@ -71,6 +72,32 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
7172
return new NeighborhoodsAccessible< T >( source, span, dim, skipCenter, f );
7273
}
7374

75+
/**
76+
* @return <code>true</code> if <code>skipCenter</code> was set to true
77+
* during construction, <code>false</code> otherwise.
78+
* @see CenteredRectangleShape#CenteredRectangleShape(int[], boolean)
79+
*/
80+
public boolean isSkippingCenter()
81+
{
82+
return skipCenter;
83+
}
84+
85+
/**
86+
* @return The span of this shape.
87+
*/
88+
public long getSpan()
89+
{
90+
return span;
91+
}
92+
93+
/**
94+
* @return The dimension along which the line is layed.
95+
*/
96+
public int getLineDimension()
97+
{
98+
return dim;
99+
}
100+
74101
@Override
75102
public String toString()
76103
{

src/main/java/net/imglib2/algorithm/neighborhood/HyperSphereShape.java

+15
Original file line numberDiff line numberDiff line change
@@ -50,6 +50,7 @@
5050
* A factory for Accessibles on hyper-sphere neighboorhoods.
5151
*
5252
* @author Tobias Pietzsch <[email protected]>
53+
* @author Jonathan Hale (University of Konstanz)
5354
*/
5455
public class HyperSphereShape implements Shape
5556
{
@@ -84,6 +85,20 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
8485
return new NeighborhoodsAccessible< T >( source, radius, HyperSphereNeighborhood.< T >factory() );
8586
}
8687

88+
/**
89+
* @return The radius of this shape.
90+
*/
91+
public long getRadius()
92+
{
93+
return radius;
94+
}
95+
96+
@Override
97+
public String toString()
98+
{
99+
return "HyperSphereShape, radius = " + radius;
100+
}
101+
87102
public static final class NeighborhoodsIterableInterval< T > extends AbstractInterval implements IterableInterval< Neighborhood< T > >
88103
{
89104
final RandomAccessibleInterval< T > source;

src/main/java/net/imglib2/algorithm/neighborhood/PairOfPointsShape.java

+9-1
Original file line numberDiff line numberDiff line change
@@ -66,10 +66,18 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
6666
return new NeighborhoodsAccessible< T >( source, offset, f );
6767
}
6868

69+
/**
70+
* @return Copy of the offset of this shape.
71+
*/
72+
public long[] getOffset()
73+
{
74+
return offset.clone();
75+
}
76+
6977
@Override
7078
public String toString()
7179
{
72-
return "PairShape, offset = " + Util.printCoordinates( offset );
80+
return "PairOfPointsShape, offset = " + Util.printCoordinates( offset );
7381
}
7482

7583
public static final class NeighborhoodsIterableInterval< T > extends AbstractInterval implements IterableInterval< Neighborhood< T > >

src/main/java/net/imglib2/algorithm/neighborhood/PeriodicLineShape.java

+17
Original file line numberDiff line numberDiff line change
@@ -22,6 +22,7 @@
2222
* to granulometries. Pattern Recognition Letters (1996) vol. 17 (10) pp. 1057-1063</tt>
2323
*
2424
* @author Jean-Yves Tinevez, 2013
25+
* @author Jonathan Hale (University of Konstanz)
2526
*/
2627
public class PeriodicLineShape implements Shape
2728
{
@@ -87,6 +88,22 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
8788
return new NeighborhoodsAccessible< T >( source, span, increments, f );
8889
}
8990

91+
/**
92+
* @return The span of this shape.
93+
*/
94+
public long getSpan()
95+
{
96+
return span;
97+
}
98+
99+
/**
100+
* @return Copy of the increments of this shape.
101+
*/
102+
public int[] getIncrements()
103+
{
104+
return increments.clone();
105+
}
106+
90107
@Override
91108
public String toString()
92109
{

src/main/java/net/imglib2/algorithm/neighborhood/RectangleShape.java

+24
Original file line numberDiff line numberDiff line change
@@ -51,6 +51,7 @@
5151
* A factory for Accessibles on rectangular neighboorhoods.
5252
*
5353
* @author Tobias Pietzsch <[email protected]>
54+
* @author Jonathan Hale (University of Konstanz)
5455
*/
5556
public class RectangleShape implements Shape
5657
{
@@ -111,7 +112,30 @@ private Interval createSpan( final int n )
111112
}
112113
return new FinalInterval( min, max );
113114
}
115+
116+
/**
117+
* @return <code>true</code> if <code>skipCenter</code> was set to true
118+
* during construction, <code>false</code> otherwise.
119+
* @see CenteredRectangleShape#CenteredRectangleShape(int[], boolean)
120+
*/
121+
public boolean isSkippingCenter()
122+
{
123+
return skipCenter;
124+
}
114125

126+
/**
127+
* @return The span of this shape.
128+
*/
129+
public int getSpan()
130+
{
131+
return span;
132+
}
133+
134+
@Override
135+
public String toString()
136+
{
137+
return "RectangleShape, span = " + span;
138+
}
115139

116140
public static final class NeighborhoodsIterableInterval< T > extends AbstractInterval implements IterableInterval< Neighborhood< T > >
117141
{

0 commit comments

Comments
 (0)