| java.lang.Object jj2000.j2k.codestream.CoordInfo
All known Subclasses: jj2000.j2k.codestream.PrecCoordInfo, jj2000.j2k.codestream.CBlkCoordInfo,
CoordInfo | abstract public class CoordInfo (Code) | | This class is used to store the coordinates of objects such as code-blocks
or precincts. As this is an abstract class, it cannot be used directly but
derived classes have been created for code-blocks and packets
(CBlkCoordInfo and PrecCoordInfo).
See Also: PrecCoordInfo See Also: CBlkCoordInfo |
Field Summary | |
public int | h | public int | ulx | public int | uly | public int | w |
Constructor Summary | |
public | CoordInfo(int ulx, int uly, int w, int h) Constructor. | public | CoordInfo() |
h | public int h(Code) | | Object's height
|
ulx | public int ulx(Code) | | Horizontal upper left coordinate in the subband
|
uly | public int uly(Code) | | Vertical upper left coordinate in the subband
|
w | public int w(Code) | | Object's width
|
CoordInfo | public CoordInfo(int ulx, int uly, int w, int h)(Code) | | Constructor. Creates a CoordInfo object.
Parameters: ulx - The horizontal upper left coordinate in the subband Parameters: uly - The vertical upper left coordinate in the subband Parameters: w - The width Parameters: h - The height Parameters: idx - The object's index |
CoordInfo | public CoordInfo()(Code) | | Empty contructor
|
toString | public String toString()(Code) | | Returns object's information in a String
String with object's information |
|
|