[]
This class provides a default implementation of the methods in the 'ImgData' interface. The default implementation is just to return the value of the source, where the source is another 'ImgData' object.
<p>This abstract class can be used to facilitate the development of other
classes that implement 'ImgData'. For example a YCbCr color transform can
inherit from this class and all the trivial methods do not have to be
re-implemented.</p><p>If the default implementation of a method provided in this class does
not suit a particular implementation of the 'ImgData' interface, the method
can be overridden to implement the proper behavior.</p>
public abstract class ImgDataAdapter : ImgData
Name | Description |
---|---|
ImgDataAdapter(ImgData) | Instantiates the ImgDataAdapter object specifying the ImgData source. |
Name | Description |
---|---|
imgdatasrc | The ImgData source |
tIdx | Index of the current tile |
Name | Description |
---|---|
ImgHeight | Returns the overall height of the image in pixels. This is the image's height without accounting for any component subsampling or tiling.
|
ImgULX | Returns the horizontal coordinate of the image origin, the top-left corner, in the canvas system, on the reference grid.
|
ImgULY | Returns the vertical coordinate of the image origin, the top-left corner, in the canvas system, on the reference grid.
|
ImgWidth | Returns the overall width of the image in pixels. This is the image's width without accounting for any component subsampling or tiling.
|
NomTileHeight | Returns the nominal tiles height |
NomTileWidth | Returns the nominal tiles width |
NumComps | Returns the number of components in the image.
|
TileHeight | Returns the overall height of the current tile in pixels. This is the tile's height without accounting for any component subsampling. This is also referred as the reference grid height in the current tile.
|
TileIdx | Returns the index of the current tile, relative to a standard scan-line order.
|
TilePartULX | Returns the horizontal tile partition offset in the reference grid |
TilePartULY | Returns the vertical tile offset in the reference grid |
TileWidth | Returns the overall width of the current tile in pixels. This is the tile's width without accounting for any component subsampling. This is also referred as the reference grid width in the current tile.
|
Name | Description |
---|---|
getCompImgHeight(int) | Returns the height in pixels of the specified component in the overall image.
|
getCompImgWidth(int) | Returns the width in pixels of the specified component in the overall image.
|
getCompSubsX(int) | Returns the component subsampling factor in the horizontal direction, for the specified component. This is, approximately, the ratio of dimensions between the reference grid and the component itself, see the 'ImgData' interface desription for details.
|
getCompSubsY(int) | Returns the component subsampling factor in the vertical direction, for the specified component. This is, approximately, the ratio of dimensions between the reference grid and the component itself, see the 'ImgData' interface desription for details.
|
getCompULX(int) | Returns the horizontal coordinate of the upper-left corner of the specified component in the current tile.
|
getCompULY(int) | Returns the vertical coordinate of the upper-left corner of the specified component in the current tile.
|
getNomRangeBits(int) | |
getNumTiles() | Returns the total number of tiles in the image.
|
getNumTiles(Coord) | Returns the number of tiles in the horizontal and vertical directions.
|
getTile(Coord) | Returns the indexes of the current tile. These are the horizontal and vertical indexes of the current tile.
|
getTileCompHeight(int, int) | Returns the height in pixels of the specified tile-component.
|
getTileCompWidth(int, int) | Returns the width in pixels of the specified tile-component tile.
|
nextTile() | Advances to the next tile, in standard scan-line order (by rows then columns). An NoNextElementException is thrown if the current tile is the last one (i.e. there is no next tile).
|
setTile(int, int) | Changes the current tile, given the new indexes. An IllegalArgumentException is thrown if the indexes do not correspond to a valid tile.
|