Package | Description |
---|---|
edu.stanford.rsl.conrad.data |
The package contains the new grid classes that will be used in the future.
|
edu.stanford.rsl.tutorial |
This package contains reference implementations for different well known reconstruction methods and
can be used to look up how to do certain things via the API.
|
edu.stanford.rsl.tutorial.atract |
This package contains a reference implementation of ATRACT.
|
edu.stanford.rsl.tutorial.fan |
This package contains a reference implementation of a fan beam reconstruction.
|
edu.stanford.rsl.tutorial.motionEstimation |
This package contains a motion estimator.
|
Modifier and Type | Class and Description |
---|---|
class |
Grid1DComplex
Class to use complex numbers in a grid structure.
|
Modifier and Type | Method and Description |
---|---|
Grid1D |
Grid1DComplex.getImagSubGrid(int startIndex,
int length) |
Grid1D |
Grid1DComplex.getMagSubGrid(int startIndex,
int length) |
Grid1D |
Grid1DComplex.getPhaseSubGrid(int startIndex,
int length) |
Grid1D |
Grid1DComplex.getRealSubGrid(int startIndex,
int length) |
Grid1D |
Grid2D.getSubGrid(int j)
Returns the corresponding Grid1D object that points on the linear 2D row memory
|
Grid1D |
Grid1D.getSubGrid(int startIndex,
int length)
EXPLYCITELY copies the elements requested by the subgrid range and returns the copied values in a new Grid1D.
|
Modifier and Type | Method and Description |
---|---|
static void |
InterpolationOperators.addInterpolateLinear(Grid1D grid,
double i,
float val)
Linear extrapolation into a 1D Grid
|
static float |
InterpolationOperators.interpolateLinear(Grid1D grid,
double i)
Linear interpolation of a 1D Grid
|
Constructor and Description |
---|
Grid1D(Grid1D input) |
Grid1DComplex(Grid1D grid) |
Grid1DComplex(Grid1D grid,
boolean extendToNextPowerOfTwo) |
Modifier and Type | Class and Description |
---|---|
class |
RamLakKernel
Spatial discrete realization of the ramp filter using the Ram-Lak Convolver.
|
Modifier and Type | Method and Description |
---|---|
void |
RamLakKernel.applyToGrid(Grid1D input) |
void |
HilbertKernel.applyToGrid(Grid1D input) |
void |
GridKernel.applyToGrid(Grid1D input)
Method to apply the kernel to a 1DGrid
|
void |
DerivativeKernel.applyToGrid(Grid1D input) |
Modifier and Type | Class and Description |
---|---|
class |
AtractKernel1D
This class implements the 1-D version of the ATRACT kernel.
|
class |
AtractKernel1D_test
This class implements the 1-D version of the ATRACT kernel.
|
class |
LaplaceKernel1D
This class implements the 1-D version of the Laplacian Kernel ( 1 -2 1 )
|
Modifier and Type | Method and Description |
---|---|
void |
LaplaceKernel1D.applyToGrid(Grid1D input)
This method implements the Convolution in Fourier Space for a 1-D Grid.
|
void |
AtractKernel1D_test.applyToGrid(Grid1D input) |
void |
AtractKernel1D.applyToGrid(Grid1D input) |
Modifier and Type | Method and Description |
---|---|
void |
CosineFilter.applyToGrid(Grid1D input) |
Modifier and Type | Class and Description |
---|---|
class |
SmoothKernel1D
This class implements the 1-D version of a smoothing kernel (1 1 1)
|
class |
SobelKernel1D
This class implements the 1-D version of the Sobel Kernel (-2 0 2)
|
Modifier and Type | Method and Description |
---|---|
Grid1D |
SobelKernel1D.paddGrid(Grid1D input,
int width) |
Grid1D |
SmoothKernel1D.paddGrid(Grid1D input,
int width) |
Modifier and Type | Method and Description |
---|---|
void |
SobelKernel1D.applyToGrid(Grid1D input)
This method implements the Convolution in Fourier Space for a 1-D Grid.
|
void |
SmoothKernel1D.applyToGrid(Grid1D input)
This method implements the Convolution in Fourier Space for a 1-D Grid.
|
Grid1D |
SobelKernel1D.paddGrid(Grid1D input,
int width) |
Grid1D |
SmoothKernel1D.paddGrid(Grid1D input,
int width) |