Uses of Class
ij.process.FloatProcessor

Packages that use FloatProcessor
ij.plugin   
ij.plugin.filter   
ij.process   
 

Uses of FloatProcessor in ij.plugin
 

Constructors in ij.plugin with parameters of type FloatProcessor
ZProjector.AverageIntensity(FloatProcessor fp, int num)
          Constructor requires number of slices to be projected.
ZProjector.MaxIntensity(FloatProcessor fp)
          Simple constructor since no preprocessing is necessary.
ZProjector.MinIntensity(FloatProcessor fp)
          Simple constructor since no preprocessing is necessary.
ZProjector.StandardDeviation(FloatProcessor fp, int num)
           
 

Uses of FloatProcessor in ij.plugin.filter
 

Methods in ij.plugin.filter with parameters of type FloatProcessor
 void GaussianBlur.blur1Direction(FloatProcessor ip, double sigma, double accuracy, boolean xDirection, int extraLines)
          Blur an image in one direction (x or y) by a Gaussian.
 void GaussianBlur.blurFloat(FloatProcessor ip, double sigmaX, double sigmaY, double accuracy)
          Gaussian Filtering of a FloatProcessor.
 void RankFilters.doFiltering(FloatProcessor ip, int kRadius, int[] lineRadius, int filterType, int whichOutliers, float threshold)
          Filter a FloatProcessor according to filterType
 void UnsharpMask.sharpenFloat(FloatProcessor fp, double sigma, float weight)
          Unsharp Mask filtering of a float image.
 

Uses of FloatProcessor in ij.process
 

Subclasses of FloatProcessor in ij.process
 class FHT
          This class contains a Java implementation of the Fast Hartley Transform.
 

Methods in ij.process that return FloatProcessor
(package private)  FloatProcessor TypeConverter.convertByteToFloat(float[] cTable)
          Converts a ByteProcessor to a FloatProcessor.
(package private)  FloatProcessor TypeConverter.convertShortToFloat(float[] cTable)
          Converts a ShortProcessor to a FloatProcessor.
 FloatProcessor ColorProcessor.getBrightness()
          Returns brightness as a FloatProcessor.
 FloatProcessor ColorProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with one color channel of the image.
 FloatProcessor FloatProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns this FloatProcessor.
 FloatProcessor ByteProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with the same image, no scaling or calibration (pixel values 0 to 255).
abstract  FloatProcessor ImageProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with the image or one color channel thereof.
 FloatProcessor ShortProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with the same image, no scaling or calibration (pixel values 0 to 65535).
 FloatProcessor[] ByteProcessor.toFloatProcessors()
           
 

Methods in ij.process with parameters of type FloatProcessor
 void ColorProcessor.setBrightness(FloatProcessor fp)
          Updates the brightness using the pixels in the specified FloatProcessor).
 void ByteProcessor.setFromFloatProcessors(FloatProcessor[] fp)
           
 void ColorProcessor.setPixels(int channelNumber, FloatProcessor fp)
          Sets the pixels of one color channel from a FloatProcessor.
 void FloatProcessor.setPixels(int channelNumber, FloatProcessor fp)
          Sets the pixels, and min&max values from a FloatProcessor.
 void ByteProcessor.setPixels(int channelNumber, FloatProcessor fp)
          Sets the pixels from a FloatProcessor, no scaling.
abstract  void ImageProcessor.setPixels(int channelNumber, FloatProcessor fp)
          Sets the pixels (of one color channel for RGB images) from a FloatProcessor.
 void ShortProcessor.setPixels(int channelNumber, FloatProcessor fp)
          Sets the pixels from a FloatProcessor, no scaling.
 FloatProcessor ColorProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with one color channel of the image.
 FloatProcessor FloatProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns this FloatProcessor.
 FloatProcessor ByteProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with the same image, no scaling or calibration (pixel values 0 to 255).
abstract  FloatProcessor ImageProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with the image or one color channel thereof.
 FloatProcessor ShortProcessor.toFloat(int channelNumber, FloatProcessor fp)
          Returns a FloatProcessor with the same image, no scaling or calibration (pixel values 0 to 65535).
 

Constructors in ij.process with parameters of type FloatProcessor
FloatBlitter(FloatProcessor ip)
          Constructs a FloatBlitter from a FloatProcessor.