public class BoundingBox
extends java.lang.Object
SNTPoint
s) of a reconstructed structure.Modifier and Type | Field and Description |
---|---|
java.lang.String |
info
Used to store information about this bounding box.
|
double |
xSpacing
The 'voxel width' of the bounding box
|
double |
ySpacing
The 'voxel height' of the bounding box
|
double |
zSpacing
The 'voxel depth' of the bounding box
|
Constructor and Description |
---|
BoundingBox()
Constructs an 'empty' BoundingBox using default values, with the box origin
defined as a point with
Double.NaN coordinates and
Double.NaN dimensions |
Modifier and Type | Method and Description |
---|---|
BoundingBox |
clone() |
void |
compute(java.util.Iterator<? extends SNTPoint> iterator)
Computes a new positioning so that this box encloses the specified point
cloud.
|
boolean |
contains(BoundingBox boundingBox)
Checks whether the specified BoundingBox is enclosed by this one .
|
double |
depth() |
boolean |
equals(BoundingBox box)
Compares two BoundingBox objects for equality.
|
ij.measure.Calibration |
getCalibration()
Creates a Calibration object using information from this BoundingBox
|
SNTPoint |
getCentroid() |
double |
getDiagonal()
Gets the box diagonal
|
double[] |
getDimensions(boolean scaled)
Gets this BoundingBox dimensions.
|
java.lang.String |
getUnit()
Gets the length unit of voxel spacing
|
double |
height() |
void |
inferSpacing(java.util.Collection<SWCPoint> points)
Infers the voxel spacing of this box from the inter-node distances of a
Collection of
SWCPoint s. |
boolean |
isScaled()
Checks whether this BoundingBox is spatially calibrated, i.e., if voxel
spacing has been specified
|
PointInImage |
origin()
Retrieves the origin of this box.
|
PointInImage |
originOpposite()
Retrieves the origin opposite of this box.
|
void |
setDimensions(int uncalibratedWidth,
int uncalibratedHeight,
int uncalibratedDepth)
Sets the dimensions of this bounding box using uncalibrated (pixel)
lengths.
|
void |
setOrigin(PointInImage origin)
Sets the origin for this box, i.e., the Box's SE vertex (lower left corner)
|
void |
setSpacing(double xSpacing,
double ySpacing,
double zSpacing,
java.lang.String spacingUnit)
Sets the voxel spacing.
|
void |
setUnit(java.lang.String unit)
Sets the default length unit for voxel spacing (typically um, for SWC
reconstructions)
|
PointInImage |
unscaledOrigin()
Retrieves the origin of this box in unscaled ("pixel" units)
|
PointInImage |
unscaledOriginOpposite()
Retrieves the origin opposite of this box in unscaled ("pixel" units)
|
double |
width() |
public double xSpacing
public double ySpacing
public double zSpacing
public java.lang.String info
public BoundingBox()
Double.NaN
coordinates and
Double.NaN
dimensionspublic void setSpacing(double xSpacing, double ySpacing, double zSpacing, java.lang.String spacingUnit)
xSpacing
- the 'voxel width' of the bounding boxySpacing
- the 'voxel height' of the bounding boxzSpacing
- the 'voxel depth' of the bounding boxspacingUnit
- the length unitpublic void compute(java.util.Iterator<? extends SNTPoint> iterator)
iterator
- the iterator of the points Collectionpublic SNTPoint getCentroid()
public void inferSpacing(java.util.Collection<SWCPoint> points)
SWCPoint
s.points
- the point collectionpublic boolean isScaled()
public void setUnit(java.lang.String unit)
unit
- the new unitpublic java.lang.String getUnit()
public ij.measure.Calibration getCalibration()
public double[] getDimensions(boolean scaled)
scaled
- If true, dimensions are retrieved in real world units,
otherwise in ("pixel") unitspublic double getDiagonal()
public boolean contains(BoundingBox boundingBox)
boundingBox
- the bounding box to be testedpublic PointInImage origin()
public PointInImage originOpposite()
public PointInImage unscaledOrigin()
public PointInImage unscaledOriginOpposite()
public double width()
public double height()
public double depth()
public void setDimensions(int uncalibratedWidth, int uncalibratedHeight, int uncalibratedDepth) throws java.lang.IllegalArgumentException
uncalibratedWidth
- the uncalibrated widthuncalibratedHeight
- the uncalibrated heightuncalibratedDepth
- the uncalibrated depthjava.lang.IllegalArgumentException
- If origin has not been set or
compute(Iterator)
has not been calledpublic void setOrigin(PointInImage origin)
origin
- the new originpublic boolean equals(BoundingBox box)
box
- the comparing objectpublic BoundingBox clone()
clone
in class java.lang.Object