net.aerith.misao.image
Class LevelAdjustmentSet

java.lang.Object
  |
  +--net.aerith.misao.image.LevelAdjustmentSet
Direct Known Subclasses:
DefaultLevelAdjustmentSet

public class LevelAdjustmentSet
extends java.lang.Object

The LevelAdjustmentSet represents a set of the original statistics and the current level to view of an image.


Field Summary
 double current_maximum
          The current maximum pixel value.
 double current_minimum
          The current minimum pixel value.
 Statistics original_statistics
          The statistics of the original image.
 
Constructor Summary
LevelAdjustmentSet(LevelAdjustmentSet set)
          Constructs a LevelAdjustmentSet by copy.
LevelAdjustmentSet(MonoImage mono_image)
          Constructs a LevelAdjustmentSet based on the specified image.
 
Methods inherited from class java.lang.Object
, clone, equals, finalize, getClass, hashCode, notify, notifyAll, registerNatives, toString, wait, wait, wait
 

Field Detail

original_statistics

public Statistics original_statistics
The statistics of the original image.

current_minimum

public double current_minimum
The current minimum pixel value.

current_maximum

public double current_maximum
The current maximum pixel value.
Constructor Detail

LevelAdjustmentSet

public LevelAdjustmentSet(MonoImage mono_image)
Constructs a LevelAdjustmentSet based on the specified image.
Parameters:
mono_image - the image.

LevelAdjustmentSet

public LevelAdjustmentSet(LevelAdjustmentSet set)
Constructs a LevelAdjustmentSet by copy. Actually, the original statistics is not copied because it should be read only.
Parameters:
set - the source level adjustment set.