Package skyview.process.deedger
Class ImageMedian
- java.lang.Object
-
- skyview.process.Processor
-
- skyview.process.deedger.ImageMedian
-
- All Implemented Interfaces:
java.io.Serializable
,Component
public class ImageMedian extends Processor
This class adjusts the 0 points for data taken from multiple images to try to minimize edge effects. This class just normalizes the medians of all image.- See Also:
- Serialized Form
-
-
Constructor Summary
Constructors Constructor Description ImageMedian()
-
Method Summary
All Methods Instance Methods Concrete Methods Modifier and Type Method Description java.lang.String
getDescription()
Get a description of this objectjava.lang.String
getName()
Get a name for this objectvoid
process(Image[] inputs, Image output, int[] source, Sampler samp, DepthSampler dsamp)
Initialized the de-edger.void
updateHeader(nom.tam.fits.Header h)
Update a FITS header with the processing done here.boolean
updatesOutput()
Does this processor actually modify the output array?
-
-
-
Method Detail
-
getName
public java.lang.String getName()
Get a name for this object
-
getDescription
public java.lang.String getDescription()
Get a description of this object
-
updatesOutput
public boolean updatesOutput()
Description copied from class:Processor
Does this processor actually modify the output array?- Specified by:
updatesOutput
in classProcessor
-
process
public void process(Image[] inputs, Image output, int[] source, Sampler samp, DepthSampler dsamp)
Initialized the de-edger.
-
updateHeader
public void updateHeader(nom.tam.fits.Header h)
Update a FITS header with the processing done here.- Specified by:
updateHeader
in classProcessor
-
-