|
Isis 3 Programmer Reference
|
11 #include "ImageImporter.h"
45 virtual bool isRgb()
const;
46 virtual bool isArgb()
const;
50 virtual int getPixel(
int s,
int l)
const;
52 virtual int getGray(
int pixel)
const;
53 virtual int getRed(
int pixel)
const;
54 virtual int getGreen(
int pixel)
const;
55 virtual int getBlue(
int pixel)
const;
56 virtual int getAlpha(
int pixel)
const;
virtual ~QtImporter()
Destruct the importer.
virtual bool isArgb() const
Tests to see if the input image is has an alpha channel, implying RGBA.
File name manipulation and expansion.
virtual int getAlpha(int pixel) const
Retrieves the alpha component of the given pixel.
Imports images with standard formats into Isis as cubes.
virtual bool isGrayscale() const
Tests to see if the input image is grayscale (no RGB/A).
virtual int getBlue(int pixel) const
Retrieves the blue component of the given pixel.
QImage * m_qimage
Structure holding all input image data in memory.
QtImporter(FileName inputName)
Construct the importer.
virtual int getGray(int pixel) const
Retrieves the gray component of the given pixel.
virtual bool isRgb() const
Tests to see if the input image is neither grayscale nor has an alpha channel, implying RGB (no alpha...
virtual int getPixel(int s, int l) const
Returns a representation of a pixel for the input format that can then be broken down into specific g...
virtual int getGreen(int pixel) const
Retrieves the green component of the given pixel.
Imports a series of standard image formats with Qt facilities.
virtual void updateRawBuffer(int line, int band) const
Does nothing as Qt reads the entire input image into memory, and therefore does not need to be update...
This is free and unencumbered software released into the public domain.
virtual int getRed(int pixel) const
Retrieves the red component of the given pixel.