Uses of Class
core.image.ScalarImage

Packages that use ScalarImage
core.dflic This package contains classes which create and evolve the individual FLIC images making up a movie of a given experiment. 
core.image This package creates and evolves the individual FLIC images making up a movie of a given experiment. 
 

Uses of ScalarImage in core.dflic
 

Fields in core.dflic declared as ScalarImage
private  ScalarImage FLIC.input
           
 

Methods in core.dflic with parameters of type ScalarImage
 void FLIC.SetInput(ScalarImage input)
          Sets the input image to "input"
 

Constructors in core.dflic with parameters of type ScalarImage
FLIC(ScalarImage input, AccumImage output, Vec2Field field, Vec2Transform ftoi, Vec2Transform ftoo)
          Constructs an instance of a FLIC with the given initial parameters.
 

Uses of ScalarImage in core.image
 

Subclasses of ScalarImage in core.image
 class Accum2Image
          Stores a float image with alpha^2 = < width, height, float-buffer, alpha-buffer, minalpha, coverage >.
 class AccumImage
          Stores a monochrome float image with alpha = < width, height, float-buffer, alpha-buffer, minalpha, coverage >.
 

Methods in core.image with parameters of type ScalarImage
 void ScalarImage.Copy(ScalarImage image, int xorigin, int yorigin)
          Copies the scalar values from the sub-window of "image" starting at (xorigin, yorigin) to "this".
 void ScalarImage.Copy(ScalarImage image)
          Copies the scalar values from the top-left corner of "image" to "this" Requires: "image" is at least as large as "this"
 void ScalarImage.StretchBilinear(ScalarImage image)
          Rescales the scalar data in "image" to "this" using bilinear interpolation.
 void ScalarImage.Modulate(ScalarImage image)
           
 void ScalarImage.Add(ScalarImage image)
           
 void RGBImage.fromScalarImage(ScalarImage image, int xorigin, int yorigin, double R, double G, double B)
          Sets 'this' to a colorized representation of 'image' within the sub-window starting at (xorigin, yorigin).
 void RGBImage.fromScalarImage(ScalarImage image, double R, double G, double B)
          Sets 'this' to a colorized representation of 'image' within the window starting at the top-left corner.
 void RGBImage.fromScalarImageMagnitude(ScalarImage image, Vec2Field f, Vec2Transform ftoi, Vec3Field func)
           
 void RGBImage.RfromScalarImage(ScalarImage image, double R)
           
 void RGBImage.RtoScalarImage(ScalarImage image)
           
 void RGBImage.GfromScalarImage(ScalarImage image, double G)
           
 void RGBImage.GtoScalarImage(ScalarImage image)
           
 void RGBImage.BfromScalarImage(ScalarImage image, double B)
           
 void RGBImage.BtoScalarImage(ScalarImage image)