public interface BorderManager3D
 ImageProcessor image = ...
 BorderManager bm = new ReplicatedBorder(image);
 int value = bm.get(-5, -10);
 | Modifier and Type | Interface and Description | 
|---|---|
static class  | 
BorderManager3D.Type
A set of pre-defined border managers stored in an enumeration. 
 | 
| Modifier and Type | Method and Description | 
|---|---|
default ij.ImageStack | 
addBorders(ij.ImageStack image,
          int left,
          int right,
          int top,
          int bottom,
          int front,
          int back)
Adds the specified number of voxels around the input image, and returns
 the resulting image. 
 | 
int | 
get(int x,
   int y,
   int z)
Returns the value corresponding to (x,y) position. 
 | 
default ij.ImageStack addBorders(ij.ImageStack image,
                                 int left,
                                 int right,
                                 int top,
                                 int bottom,
                                 int front,
                                 int back)
image - the input image stackleft - the number of voxels to add to the leftright - the number of voxels to add to the righttop - the number of voxels to add on top of the stackbottom - the number of voxels to add at the bottom of the stackfront - the number of slices to add in front of the stackback - the number of slices to add behind the stackint get(int x,
        int y,
        int z)
x - column index of the positiony - row index of the positionz - slice index of the positionCopyright © 2014–2023 INRA-IJPB Modeling and Digital Imaging lab. All rights reserved.