Uses of Class
edu.washington.biostr.sig.volume.colors.ColorScheme

Packages that use ColorScheme
edu.washington.biostr.sig.brainj3d.colors   
edu.washington.biostr.sig.volume   
edu.washington.biostr.sig.volume.colors   
 

Uses of ColorScheme in edu.washington.biostr.sig.brainj3d.colors
 

Methods in edu.washington.biostr.sig.brainj3d.colors that return ColorScheme
 ColorScheme ColorSchemeCapsule.getNegative()
           
 ColorScheme ColorSchemeCapsule.getPositive()
           
static ColorScheme Colors.makeScheme(String key, double alpha)
          Make a ColorScheme from keywords.
warm fades from red to yellow to white
cold fades from blue to cyan to white
bone doesn't work well yet, but is greyscale that tops out near bone's color
mask creates the mask scheme, which is colorless and masks out other values.
inverted can be added to any name to indicate that 0 is the max value and it logarithmically falls off.
Any color that getColor(String) accepts can also be used for a key.
 

Methods in edu.washington.biostr.sig.brainj3d.colors with parameters of type ColorScheme
 void ColorSchemeCapsule.setNegative(ColorScheme negative)
           
 void ColorSchemeCapsule.setPositive(ColorScheme positive)
           
 

Constructors in edu.washington.biostr.sig.brainj3d.colors with parameters of type ColorScheme
ColorSchemeCapsule(double min, double max, ColorScheme positive, double posThreshold, double posWindow, ColorScheme negative, double negThreshold, double negWindow, double alpha, boolean integer)
           
 

Uses of ColorScheme in edu.washington.biostr.sig.volume
 

Methods in edu.washington.biostr.sig.volume with parameters of type ColorScheme
 void ImageInfo2.setTable(ColorScheme positive, ColorScheme negative, float alpha)
          Helper to generate a color table from color schemes.
 void ImageInfo.setTable(ColorScheme positive, ColorScheme negative, float alpha)
          Helper to generate a color table from color schemes.
 

Uses of ColorScheme in edu.washington.biostr.sig.volume.colors
 

Subclasses of ColorScheme in edu.washington.biostr.sig.volume.colors
 class AdvancedColorScheme
          An AdvancedColorScheme allows the user to create a scheme that flows from one color to another (and maybe to another, etc) by doing a piecewise interpolation.
The most convenient way to use it is by calling the getWarm() or getCold() methods.
 class BasicColorScheme
          Generate a color scheme from black to the given color.
 class InvertedLogScheme
          This provides a wrapper for a color scheme.
 class MaskScheme
          Return 0,0,0,1 for anything below the threshold (non transparent black, this will black out anything it is applied over) and 0,0,0,0 for anything at or above the threshold (basically a completely transparent nothing, this should not change anything that it is applied over).
 class MinimizeBoneScheme
          This is an attempt to provide a grayscale that becomes bonelike near 1.
In MRI images, the brightest structures are bone and so it is helpful to reduce the brightness of it and make it distinct from the now brighter brain.
 

Methods in edu.washington.biostr.sig.volume.colors with parameters of type ColorScheme
protected  void ColorLookupTable.fill(boolean positive, int low, int high, ColorScheme scheme)
          Use the scheme to fill the values from low to high.
static ColorLookupTable ColorLookupTables.getTable(ColorScheme positive, ColorScheme negative, VolumeArray array)
           
static ColorLookupTable ColorLookupTables.getTable(ColorScheme positive, double max, double posThreshold, double posWindow, ColorScheme negative, double min, double negThreshold, double negWindow, double alpha, boolean integer)
          Generate a color lookup table.
 void ColorLookupTable.setNegative(ColorScheme scheme, double threshold, double window)
          Set the negative values for this using the specified color scheme with the given threshold and window.
 void ColorLookupTable.setPositive(ColorScheme scheme, double threshold, double window)
          Set the positive values for this using the specified color scheme with the given threshold and window.
 

Constructors in edu.washington.biostr.sig.volume.colors with parameters of type ColorScheme
InvertedLogScheme(ColorScheme scheme, double base)
           
 



Copyright © 2006 University of Washington. All Rights Reserved.