|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectnet.grelf.image.ImageBase
net.grelf.image.Image64
public class Image64
This is used as an alternative to BufferedImage for holding 64-bits-per-channel (floating point)
images, any number of channels.
It needs a lot of memory of course: width x height x (12 + 8n) bytes for n-channel images.
Its behaviour differs from BufferedImages in that the maximum level available is not automatically increased
to 2 to the power 32. A 16-bit BufferedImage would always be considered to have a maximum level of 65535
but the maximum level of an Image64 is the maximum level actually reached in the data (across all
channels). The range of values held must be updated by every operation that modifies the data, so it is then
available as getRangeDouble () without rescanning the image. A rescan can always be done, by
getRangeDoubleByRescanning () or getChannelRangesDouble (), but that can be time consuming.
The data can be saved on disc and reloaded in FITS format.
| Field Summary | |
|---|---|
protected double[][] |
data
|
| Fields inherited from class net.grelf.image.ImageBase |
|---|
metadata |
| Constructor Summary | |
|---|---|
Image64(java.awt.image.BufferedImage bim)
Use the BufferedImage to set the width, height and number of bands (channels) in this Image. |
|
Image64(int width,
int height,
int nBands)
Creates image without setting any pixels. |
|
Image64(int width,
int height,
int nBands,
boolean fillWithZeroes)
Creates image with pixels optionally set to zero. |
|
| Method Summary | |
|---|---|
void |
add(java.awt.image.BufferedImage bim)
Add pixel values from bim into the image data array. |
void |
add(double offset)
Offset all pixel values by the given amount. |
void |
add(Image other)
Add pixel values from another Image into the data array. |
void |
addProportion(Image other,
double fractionThis,
double fractionOther)
Add proportion of pixel values from the other Image to a proportion of the current data array. |
void |
addTranslated(java.awt.image.BufferedImage bim,
double dx,
double dy)
Add pixel values from bim into the image data array, offset by vector (dx, dy). |
void |
addTranslated(java.awt.image.BufferedImage bim,
int dx,
int dy)
Add pixel values from bim into the image data array, offset by vector (dx, dy). |
void |
applyCurve(RangeInt currentRange,
java.util.List<java.awt.Point> points,
java.awt.image.BufferedImage bim)
Apply a look-up curve to transform Image pixels into BufferedImage pixels. |
void |
applyCurveDouble(java.util.List<java.awt.Point> points)
Apply a look-up curve to this Image64. |
void |
autoCrop()
Automatically remove any rectangular margin of black (0, 0, 0) pixels from the image, thereby cropping it. |
void |
autoStretch(boolean allChannelsSame)
Stretch the contrast in the image so the full range of levels is used. |
void |
autoStretch(boolean allChannelsSame,
java.awt.Point topLeft,
java.awt.Point bottomRight)
Stretch the contrast in the image so the full range of levels is used. |
ByteMask |
autoThreshold()
Threshold automatically. |
void |
averageVertically()
Replace every pixel of every vertical line in the image by the average of the levels along the line. |
void |
averageVertically(int yMin,
int yMax)
Replace every pixel of every vertical line in the image by the average of the levels along the line, within two y coordinate limits. |
void |
blurGaussian(int nx,
int ny,
javax.swing.ProgressMonitor monitor)
Do Gaussian blurring of this image with 1D profiles of width nx (horizontal) and ny (vertical). |
protected void |
checkCompatibility(java.lang.String opName,
java.awt.image.BufferedImage bim)
|
Image |
clone()
Returns a new Image64 object with the same data, or null if there is not enough memory for it. |
Image16 |
convertToImage16()
|
Image32 |
convertToImage32()
Scale linearly to create an Image32. |
Image64 |
convertToImage64()
Simply returns this (not a clone). |
Image8 |
convertToImage8()
|
void |
convertToMonochrome()
Reduce the number of bands from 3 to 1, converting RGB to monochrome, using 0.325 x red + 0.5 * green + 0.175 * blue. |
void |
convertToMonochrome(double... f)
Reduce the number of bands to 1, combining channels, using sum_i (f[i]/I x px[i]), where I = sum_i (f[i]). |
void |
convolve(double[] horz,
double[] vert,
javax.swing.ProgressMonitor monitor)
Convolve the given image with the given 1D arrays (horizontal and vertical - may be different). |
void |
convolve(Kernel kernel,
javax.swing.ProgressMonitor monitor)
Perform a 2D linear convolution with the given kernel. |
void |
correctBackground(double scale,
int cellFactor)
Level the background of the image by dividing the image into n x n cells and using the modal values of the histogram in every cell. |
void |
crop(java.awt.Point pt1,
java.awt.Point pt2)
Crop the image by a rectangle defined by the diagonally opposite points. |
void |
deconvolve(Kernel kernel,
int nPasses,
double weight,
javax.swing.ProgressMonitor monitor)
Deconvolve this image with the given kernel, using van Cittert's method. |
void |
dispose()
Release all resources. |
void |
divide(int n)
Divide all pixel values (in all bands) in the image by n. |
void |
divideByFlatField(Image flat)
Divide by a flat field image. |
void |
drawRim(int width,
java.awt.Color colour)
Draw a rim around the image, of the given width and colour |
void |
fit(int width,
int height)
Scale the image so it fits into the given width and height (in pixels), without changing its proportions. |
void |
flipHorizontal()
Flip the image horizontally. |
void |
flipVertical()
Flip the image vertically. |
int |
getBitsPerChannel()
Get the number of bits per channel; currently always returns 64. |
RangeInt[] |
getChannelRanges()
Find the range of values in each channel, as pairs of int values - NB: MAY OVERFLOW. |
RangeDouble[] |
getChannelRangesDouble()
Find the range of values in each channel, as pairs of double values. |
int |
getHeight()
Get the height, in pixels, of the image. |
double[] |
getHorizontalSamplesDouble(int x0,
int y,
int band,
int n)
|
java.lang.String |
getImageTypeAsString()
For displaying image information, get its java.awt.image.BufferedImage type constant name. |
int |
getNBands()
Get the number of bands (channels) in the image. |
int[] |
getPixel(int x,
int y)
Get array of int pixel values for all bands at the given integer (x, y) position. |
double[] |
getPixelDouble(int x,
int y)
Get array of double pixel values for all bands at the given integer (x, y) position. |
double[] |
getPixelDoubleInterpolated(double x,
double y)
Get array of double pixel values for all bands at the given fractional (x, y) position. |
int[] |
getPixelInterpolated(double x,
double y)
Get array of int pixel values for all bands at the given fractional (x, y) position. |
RangeInt |
getRange()
Get the minimum and maximum values occurring, across all channels. |
RangeInt |
getRangeByRescanning()
Get overall range of values across all channels, as a pair of int values - NB: MAY OVERFLOW. |
RangeDouble |
getRangeByRescanningDouble()
Get overall range of values across all channels, as a pair of double values |
RangeDouble |
getRangeDouble()
Get the minimum and maximum values occurring, across all channels. |
double[] |
getVerticalSamplesDouble(int x,
int y0,
int band,
int n)
|
int |
getWidth()
Get the width, in pixels, of the image. |
Image |
gnomonicProjection(int focalLength_mm,
double detectorWidth_mm,
double detectorHeight_mm)
Project from sphere to plane. |
Image |
inverseGnomonicProjection(int focalLength_mm,
double detectorWidth_mm,
double detectorHeight_mm)
Project from plane to sphere. |
void |
invert()
Invert the colour at every pixel in the image. |
boolean |
isRaw()
Whether the image data are still in RAW format, as from a DSLR camera. |
void |
meanFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
Replace every pixel in the image by the mean value of its n x n neighbourhood, where n = 2.halfWidth + 1. |
void |
medianFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
Replace every pixel in the image by the median value of its n x n neighbourhood, where n = 2.halfWidth + 1. |
void |
multiply(double f)
Multiply all pixel values (in all bands) in the image by factor f, truncating the result if pixels contain integer values. |
void |
multiply(Image other)
Multiply pixel values of current image by those of another. |
void |
multiply(Image other,
double f1,
double f2)
Multiply fraction f1 of this image by f2 of the other. |
void |
nearestExtremeFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
Replace every pixel in the image by the nearest of the max and min of its n x n neighbourhood, where n = 2.halfWidth + 1. |
void |
neutraliseBackground()
Equate the histogram modes of all channels by stretching from the overall maximum value. |
void |
rankFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
Replace every pixel in the image by its rank in its n x n neighbourhood, where n = 2.halfWidth + 1. |
void |
reapplyColour(Image intensityAcc,
Image colourAcc)
For combining a monochrome intensity image with a multi-band colour information image, the 2 images having been created by ImProcess.splitIntensity (). |
void |
rotate(double angleDegs)
Rotate the image anticlockwise by the given angle (in degrees). |
void |
save(java.lang.String filePath)
Save on disc: 64-bit images can only be saved as FITS, so saveAsFITS() is called directly. |
void |
save(java.lang.String filePath,
RangeDouble range)
Save on disc: 64-bit images can only be saved as FITS, so saveAsFITS() is called directly. |
void |
save(java.lang.String filePath,
RangeInt range)
Save on disc: 64-bit images can only be saved as FITS, so saveAsFITS() is called directly. |
void |
saveAsFITS(java.lang.String filePath)
Saves as a 64-bit floating point FITS file with BZERO = 0.0 and BSCALE = 1.0. |
void |
scale(double factor,
boolean interpolating)
Scale the image in x and y by the given factor |
java.awt.image.BufferedImage |
scaleDownForDisplay(int factor)
Create a BufferedImage compatible with the display and scale the current Image down into it by an integer factor (maximum speed). |
void |
set(java.awt.image.BufferedImage bim)
Set pixel values from bim into the image data array. |
void |
setPixel(int x,
int y,
int[] px)
Does nothing if (x, y) is outside the image. |
void |
setPixel(int x,
int y,
int band,
int px)
Set value into a single band of a pixel without changing the other bands. |
void |
setPixelDouble(int x,
int y,
double[] px)
Does nothing if (x, y) is outside the image. |
void |
setPixelDouble(int x,
int y,
int band,
double px)
Set value into a single band of a pixel without changing the other bands. |
protected void |
setRangeDouble(RangeDouble range)
|
void |
showInfo()
Display information about the current image in a dialogue. |
Image[] |
splitChannels()
Convert image to any array of monochrome images. |
void |
subtract(Image other)
Subtract pixel values of other image from this image data array, raising result by minimum possible so it is always positive. |
void |
subtractToZero(Image other)
Subtract pixel values of other image from this image data array, clipping negative results to zero. |
ByteMask |
threshold(Threshold thresh)
Threshold the image to detect pixels in the range(s) specified by the given threshold. |
java.lang.String |
toFoldedString(java.lang.String lineEnd)
Return complete metadata in a form suitable for display. |
java.lang.String |
toString()
Get a simple description : width x height x channels |
void |
translate(double dx,
double dy)
Displace the image content by the given offset vector, interpolating between pixels. |
void |
translate(int dx,
int dy)
Displace the image content by the given offset vector. |
void |
varianceFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
Replace every pixel in the image by the variance of its n x n neighbourhood, where n = 2.halfWidth + 1. |
| Methods inherited from class net.grelf.image.ImageBase |
|---|
createImage, createImage, getCalibration, getFilePath, getGraphicsConfiguration, getMetadata, recombine, sameBitsAndBands, sameSizeBitsAndBands, setCalibration, setFilePath, setMetadata, showInfo |
| Methods inherited from class java.lang.Object |
|---|
equals, finalize, getClass, hashCode, notify, notifyAll, wait, wait, wait |
| Methods inherited from interface net.grelf.image.Image |
|---|
getCalibration, getFilePath, getMetadata, setCalibration, setFilePath, setMetadata |
| Field Detail |
|---|
protected double[][] data
| Constructor Detail |
|---|
public Image64(int width,
int height,
int nBands)
public Image64(int width,
int height,
int nBands,
boolean fillWithZeroes)
public Image64(java.awt.image.BufferedImage bim)
throws IncompatibleImageException
IncompatibleImageException| Method Detail |
|---|
public int getBitsPerChannel()
getBitsPerChannel in interface Imagepublic int getWidth()
getWidth in interface Imagepublic int getHeight()
getHeight in interface Imagepublic java.lang.String getImageTypeAsString()
getImageTypeAsString in interface Imagepublic int getNBands()
getNBands in interface Imagepublic RangeInt getRange()
getRange in interface Imagepublic RangeDouble getRangeDouble()
getRangeDouble in interface Imageprotected void setRangeDouble(RangeDouble range)
protected void checkCompatibility(java.lang.String opName,
java.awt.image.BufferedImage bim)
throws IncompatibleImageException
IncompatibleImageExceptionpublic void add(double offset)
public void addProportion(Image other,
double fractionThis,
double fractionOther)
throws IncompatibleImageException
addProportion in interface ImageIncompatibleImageException
public void add(Image other)
throws IncompatibleImageException
add in interface ImageIncompatibleImageException
public void add(java.awt.image.BufferedImage bim)
throws IncompatibleImageException
add in interface ImageIncompatibleImageException
public void addTranslated(java.awt.image.BufferedImage bim,
int dx,
int dy)
throws IncompatibleImageException
addTranslated in interface ImageIncompatibleImageException
public void addTranslated(java.awt.image.BufferedImage bim,
double dx,
double dy)
throws IncompatibleImageException
addTranslated in interface ImageIncompatibleImageException
public void applyCurve(RangeInt currentRange,
java.util.List<java.awt.Point> points,
java.awt.image.BufferedImage bim)
throws IncompatibleImageException
applyCurve in interface ImageIncompatibleImageExceptionpublic void applyCurveDouble(java.util.List<java.awt.Point> points)
public void autoCrop()
autoCrop in interface Imagepublic void autoStretch(boolean allChannelsSame)
autoStretch in interface Image
public void autoStretch(boolean allChannelsSame,
java.awt.Point topLeft,
java.awt.Point bottomRight)
autoStretch in interface Imagepublic ByteMask autoThreshold()
autoThreshold in interface Imagepublic void averageVertically()
averageVertically in interface Image
public void averageVertically(int yMin,
int yMax)
averageVertically in interface Image
public void blurGaussian(int nx,
int ny,
javax.swing.ProgressMonitor monitor)
blurGaussian in interface Imagepublic Image clone()
clone in interface Imageclone in class java.lang.Objectpublic Image8 convertToImage8()
convertToImage8 in interface Imagepublic Image16 convertToImage16()
convertToImage16 in interface Imagepublic Image32 convertToImage32()
convertToImage32 in interface Imagepublic Image64 convertToImage64()
convertToImage64 in interface Imagepublic void convertToMonochrome()
convertToMonochrome in interface Imagepublic void convertToMonochrome(double... f)
convertToMonochrome in interface Image
public void convolve(Kernel kernel,
javax.swing.ProgressMonitor monitor)
convolve in interface Image
public void convolve(double[] horz,
double[] vert,
javax.swing.ProgressMonitor monitor)
convolve in interface Image
public void correctBackground(double scale,
int cellFactor)
correctBackground in interface Image
public void crop(java.awt.Point pt1,
java.awt.Point pt2)
crop in interface Image
public void deconvolve(Kernel kernel,
int nPasses,
double weight,
javax.swing.ProgressMonitor monitor)
deconvolve in interface Imagepublic void dispose()
Image
dispose in interface Imagepublic void divide(int n)
divide in interface Imagepublic void divideByFlatField(Image flat)
divideByFlatField in interface Image
public void drawRim(int width,
java.awt.Color colour)
drawRim in interface Image
public void fit(int width,
int height)
fit in interface Imagepublic void flipHorizontal()
flipHorizontal in interface Imagepublic void flipVertical()
flipVertical in interface Imagepublic RangeInt[] getChannelRanges()
getChannelRanges in interface Imagepublic RangeDouble[] getChannelRangesDouble()
getChannelRangesDouble in interface Imagepublic RangeInt getRangeByRescanning()
getRangeByRescanning in interface Imagepublic RangeDouble getRangeByRescanningDouble()
getRangeByRescanningDouble in interface Image
public int[] getPixel(int x,
int y)
getPixel in interface Image
public double[] getPixelDouble(int x,
int y)
getPixelDouble in interface Image
public int[] getPixelInterpolated(double x,
double y)
getPixelInterpolated in interface Image
public double[] getPixelDoubleInterpolated(double x,
double y)
getPixelDoubleInterpolated in interface Image
public double[] getHorizontalSamplesDouble(int x0,
int y,
int band,
int n)
public double[] getVerticalSamplesDouble(int x,
int y0,
int band,
int n)
public Image gnomonicProjection(int focalLength_mm,
double detectorWidth_mm,
double detectorHeight_mm)
gnomonicProjection in interface Image
public Image inverseGnomonicProjection(int focalLength_mm,
double detectorWidth_mm,
double detectorHeight_mm)
inverseGnomonicProjection in interface Imagepublic void invert()
invert in interface Imagepublic boolean isRaw()
Image
isRaw in interface Image
public void meanFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
meanFilter in interface Image
public void medianFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
medianFilter in interface Imagepublic void multiply(double f)
multiply in interface Imagepublic void multiply(Image other)
Image
multiply in interface Image
public void multiply(Image other,
double f1,
double f2)
multiply in interface Image
public void nearestExtremeFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
nearestExtremeFilter in interface Imagepublic void neutraliseBackground()
Image
neutraliseBackground in interface Image
public void rankFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
rankFilter in interface Image
public void reapplyColour(Image intensityAcc,
Image colourAcc)
reapplyColour in interface Imagepublic void rotate(double angleDegs)
rotate in interface Imagepublic void save(java.lang.String filePath)
save in interface Image
public void save(java.lang.String filePath,
RangeInt range)
save in interface Image
public void save(java.lang.String filePath,
RangeDouble range)
save in interface Imagepublic void saveAsFITS(java.lang.String filePath)
saveAsFITS in interface Image
public void scale(double factor,
boolean interpolating)
scale in interface Imagepublic java.awt.image.BufferedImage scaleDownForDisplay(int factor)
scaleDownForDisplay in interface Image
public final void set(java.awt.image.BufferedImage bim)
throws IncompatibleImageException
set in interface ImageIncompatibleImageException
public void setPixel(int x,
int y,
int[] px)
setPixel in interface Image
public void setPixel(int x,
int y,
int band,
int px)
setPixel in interface Image
public void setPixelDouble(int x,
int y,
double[] px)
setPixelDouble in interface Image
public void setPixelDouble(int x,
int y,
int band,
double px)
setPixelDouble in interface Imagepublic void showInfo()
showInfo in interface Imagepublic Image[] splitChannels()
splitChannels in interface Image
public void subtract(Image other)
throws IncompatibleImageException
subtract in interface ImageIncompatibleImageException
public void subtractToZero(Image other)
throws IncompatibleImageException
subtractToZero in interface ImageIncompatibleImageExceptionpublic ByteMask threshold(Threshold thresh)
threshold in interface Imagepublic java.lang.String toString()
toString in interface ImagetoString in class java.lang.Objectpublic java.lang.String toFoldedString(java.lang.String lineEnd)
Image
toFoldedString in interface Image
public void translate(int dx,
int dy)
translate in interface Image
public void translate(double dx,
double dy)
translate in interface Image
public void varianceFilter(int halfWidth,
javax.swing.ProgressMonitor monitor)
varianceFilter in interface Image
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||