Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Implement getters for construction parameters in all Shapes #11

Merged
merged 1 commit into from
Sep 12, 2015
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Original file line number Diff line number Diff line change
Expand Up @@ -61,6 +61,7 @@
*
* @author Tobias Pietzsch <[email protected]>
* @author Jean-Yves Tinevez <[email protected]>
* @author Jonathan Hale (University of Konstanz)
*/
public class CenteredRectangleShape implements Shape
{
Expand Down Expand Up @@ -119,6 +120,24 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
return new NeighborhoodsAccessible< T >( source, spanInterval, f );
}

/**
* @return <code>true</code> if <code>skipCenter</code> was set to true
* during construction, <code>false</code> otherwise.
* @see CenteredRectangleShape#CenteredRectangleShape(int[], boolean)
*/
public boolean isSkippingCenter()
{
return skipCenter;
}

/**
* @return Copy of the span of this shape.
*/
public int[] getSpan()
{
return span.clone();
}

@Override
public String toString()
{
Expand Down
21 changes: 21 additions & 0 deletions src/main/java/net/imglib2/algorithm/neighborhood/DiamondShape.java
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,23 @@
import net.imglib2.RandomAccessible;
import net.imglib2.RandomAccessibleInterval;

/**
* TODO
*
* @author Jean-Yves Tinevez <[email protected]>
* @author Jonathan Hale (University of Konstanz)
*/
public class DiamondShape implements Shape
{

private final long radius;

/**
* Constructor
*
* @param radius
* Radius for the diamond shape.
*/
public DiamondShape( final long radius )
{
this.radius = radius;
Expand Down Expand Up @@ -47,6 +59,15 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
return new NeighborhoodsAccessible< T >( source, radius, DiamondNeighborhood.< T >factory() );
}

/**
* @return Radius of this shape.
* @see DiamondShape#DiamondShape(long)
*/
public long getRadius()
{
return radius;
}

@Override
public String toString()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -12,11 +12,24 @@
import net.imglib2.RandomAccessible;
import net.imglib2.RandomAccessibleInterval;


/**
* TODO
*
* @author Jean-Yves Tinevez <[email protected]>
* @author Jonathan Hale (University of Konstanz)
*/
public class DiamondTipsShape implements Shape
{

private final long radius;

/**
* Constructor
*
* @param radius
* Radius for the diamond shape.
*/
public DiamondTipsShape( final long radius )
{
this.radius = radius;
Expand Down Expand Up @@ -48,6 +61,15 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
return new NeighborhoodsAccessible< T >( source, radius, f );
}

/**
* @return Radius of this shape.
* @see DiamondTipsShape#DiamondTipsShape(long)
*/
public long getRadius()
{
return radius;
}

@Override
public String toString()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,8 @@
* A {@link Shape} representing finite, centered, symmetric lines, that are
* parallel to the image axes.
*
* @author Jean-Yves Tinevez <[email protected]>
* @author Jean-Yves Tinevez <[email protected]>#
* @author Jonathan Hale (University of Konstanz)
*/
public class HorizontalLineShape implements Shape
{
Expand Down Expand Up @@ -71,6 +72,32 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
return new NeighborhoodsAccessible< T >( source, span, dim, skipCenter, f );
}

/**
* @return <code>true</code> if <code>skipCenter</code> was set to true
* during construction, <code>false</code> otherwise.
* @see CenteredRectangleShape#CenteredRectangleShape(int[], boolean)
*/
public boolean isSkippingCenter()
{
return skipCenter;
}

/**
* @return The span of this shape.
*/
public long getSpan()
{
return span;
}

/**
* @return The dimension along which the line is layed.
*/
public int getLineDimension()
{
return dim;
}

@Override
public String toString()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -50,6 +50,7 @@
* A factory for Accessibles on hyper-sphere neighboorhoods.
*
* @author Tobias Pietzsch <[email protected]>
* @author Jonathan Hale (University of Konstanz)
*/
public class HyperSphereShape implements Shape
{
Expand Down Expand Up @@ -84,6 +85,20 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
return new NeighborhoodsAccessible< T >( source, radius, HyperSphereNeighborhood.< T >factory() );
}

/**
* @return The radius of this shape.
*/
public long getRadius()
{
return radius;
}

@Override
public String toString()
{
return "HyperSphereShape, radius = " + radius;
}

public static final class NeighborhoodsIterableInterval< T > extends AbstractInterval implements IterableInterval< Neighborhood< T > >
{
final RandomAccessibleInterval< T > source;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -66,10 +66,18 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
return new NeighborhoodsAccessible< T >( source, offset, f );
}

/**
* @return Copy of the offset of this shape.
*/
public long[] getOffset()
{
return offset.clone();
}

@Override
public String toString()
{
return "PairShape, offset = " + Util.printCoordinates( offset );
return "PairOfPointsShape, offset = " + Util.printCoordinates( offset );
}

public static final class NeighborhoodsIterableInterval< T > extends AbstractInterval implements IterableInterval< Neighborhood< T > >
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -22,6 +22,7 @@
* to granulometries. Pattern Recognition Letters (1996) vol. 17 (10) pp. 1057-1063</tt>
*
* @author Jean-Yves Tinevez, 2013
* @author Jonathan Hale (University of Konstanz)
*/
public class PeriodicLineShape implements Shape
{
Expand Down Expand Up @@ -87,6 +88,22 @@ public < T > NeighborhoodsAccessible< T > neighborhoodsRandomAccessibleSafe( fin
return new NeighborhoodsAccessible< T >( source, span, increments, f );
}

/**
* @return The span of this shape.
*/
public long getSpan()
{
return span;
}

/**
* @return Copy of the increments of this shape.
*/
public int[] getIncrements()
{
return increments.clone();
}

@Override
public String toString()
{
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -51,6 +51,7 @@
* A factory for Accessibles on rectangular neighboorhoods.
*
* @author Tobias Pietzsch <[email protected]>
* @author Jonathan Hale (University of Konstanz)
*/
public class RectangleShape implements Shape
{
Expand Down Expand Up @@ -111,7 +112,30 @@ private Interval createSpan( final int n )
}
return new FinalInterval( min, max );
}

/**
* @return <code>true</code> if <code>skipCenter</code> was set to true
* during construction, <code>false</code> otherwise.
* @see CenteredRectangleShape#CenteredRectangleShape(int[], boolean)
*/
public boolean isSkippingCenter()
{
return skipCenter;
}

/**
* @return The span of this shape.
*/
public int getSpan()
{
return span;
}

@Override
public String toString()
{
return "RectangleShape, span = " + span;
}

public static final class NeighborhoodsIterableInterval< T > extends AbstractInterval implements IterableInterval< Neighborhood< T > >
{
Expand Down