Source Code Cross Referenced for CBlkWTData.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » jj2000 » j2k » wavelet » analysis » Java Source Code / Java DocumentationJava Source Code and Java Documentation

Java Source Code / Java Documentation
1. 6.0 JDK Core
2. 6.0 JDK Modules
3. 6.0 JDK Modules com.sun
4. 6.0 JDK Modules com.sun.java
5. 6.0 JDK Modules sun
6. 6.0 JDK Platform
7. Ajax
8. Apache Harmony Java SE
9. Aspect oriented
10. Authentication Authorization
11. Blogger System
12. Build
13. Byte Code
14. Cache
15. Chart
16. Chat
17. Code Analyzer
18. Collaboration
19. Content Management System
20. Database Client
21. Database DBMS
22. Database JDBC Connection Pool
23. Database ORM
24. Development
25. EJB Server geronimo
26. EJB Server GlassFish
27. EJB Server JBoss 4.2.1
28. EJB Server resin 3.1.5
29. ERP CRM Financial
30. ESB
31. Forum
32. GIS
33. Graphic Library
34. Groupware
35. HTML Parser
36. IDE
37. IDE Eclipse
38. IDE Netbeans
39. Installer
40. Internationalization Localization
41. Inversion of Control
42. Issue Tracking
43. J2EE
44. JBoss
45. JMS
46. JMX
47. Library
48. Mail Clients
49. Net
50. Parser
51. PDF
52. Portal
53. Profiler
54. Project Management
55. Report
56. RSS RDF
57. Rule Engine
58. Science
59. Scripting
60. Search Engine
61. Security
62. Sevlet Container
63. Source Control
64. Swing Library
65. Template Engine
66. Test Coverage
67. Testing
68. UML
69. Web Crawler
70. Web Framework
71. Web Mail
72. Web Server
73. Web Services
74. Web Services apache cxf 2.0.1
75. Web Services AXIS2
76. Wiki Engine
77. Workflow Engines
78. XML
79. XML UI
Java
Java Tutorial
Java Open Source
Jar File Download
Java Articles
Java Products
Java by API
Photoshop Tutorials
Maya Tutorials
Flash Tutorials
3ds-Max Tutorials
Illustrator Tutorials
GIMP Tutorials
C# / C Sharp
C# / CSharp Tutorial
C# / CSharp Open Source
ASP.Net
ASP.NET Tutorial
JavaScript DHTML
JavaScript Tutorial
JavaScript Reference
HTML / CSS
HTML CSS Reference
C / ANSI-C
C Tutorial
C++
C++ Tutorial
Ruby
PHP
Python
Python Tutorial
Python Open Source
SQL Server / T-SQL
SQL Server / T-SQL Tutorial
Oracle PL / SQL
Oracle PL/SQL Tutorial
PostgreSQL
SQL / MySQL
MySQL Tutorial
VB.Net
VB.Net Tutorial
Flash / Flex / ActionScript
VBA / Excel / Access / Word
XML
XML Tutorial
Microsoft Office PowerPoint 2007 Tutorial
Microsoft Office Excel 2007 Tutorial
Microsoft Office Word 2007 Tutorial
Java Source Code / Java Documentation » 6.0 JDK Modules » Java Advanced Imaging » jj2000.j2k.wavelet.analysis 
Source Cross Referenced  Class Diagram Java Document (Java Doc) 


001:        /*
002:         * $RCSfile: CBlkWTData.java,v $
003:         * $Revision: 1.1 $
004:         * $Date: 2005/02/11 05:02:30 $
005:         * $State: Exp $
006:         *
007:         * Class:                   CBlkWTData
008:         *
009:         * Description:             Storage for code-blocks of WT data.
010:         *
011:         *
012:         *
013:         * COPYRIGHT:
014:         *
015:         * This software module was originally developed by Raphaël Grosbois and
016:         * Diego Santa Cruz (Swiss Federal Institute of Technology-EPFL); Joel
017:         * Askelöf (Ericsson Radio Systems AB); and Bertrand Berthelot, David
018:         * Bouchard, Félix Henry, Gerard Mozelle and Patrice Onno (Canon Research
019:         * Centre France S.A) in the course of development of the JPEG2000
020:         * standard as specified by ISO/IEC 15444 (JPEG 2000 Standard). This
021:         * software module is an implementation of a part of the JPEG 2000
022:         * Standard. Swiss Federal Institute of Technology-EPFL, Ericsson Radio
023:         * Systems AB and Canon Research Centre France S.A (collectively JJ2000
024:         * Partners) agree not to assert against ISO/IEC and users of the JPEG
025:         * 2000 Standard (Users) any of their rights under the copyright, not
026:         * including other intellectual property rights, for this software module
027:         * with respect to the usage by ISO/IEC and Users of this software module
028:         * or modifications thereof for use in hardware or software products
029:         * claiming conformance to the JPEG 2000 Standard. Those intending to use
030:         * this software module in hardware or software products are advised that
031:         * their use may infringe existing patents. The original developers of
032:         * this software module, JJ2000 Partners and ISO/IEC assume no liability
033:         * for use of this software module or modifications thereof. No license
034:         * or right to this software module is granted for non JPEG 2000 Standard
035:         * conforming products. JJ2000 Partners have full right to use this
036:         * software module for his/her own purpose, assign or donate this
037:         * software module to any third party and to inhibit third parties from
038:         * using this software module for non JPEG 2000 Standard conforming
039:         * products. This copyright notice must be included in all copies or
040:         * derivative works of this software module.
041:         *
042:         * Copyright (c) 1999/2000 JJ2000 Partners.
043:         * */
044:        package jj2000.j2k.wavelet.analysis;
045:
046:        import jj2000.j2k.image.*;
047:
048:        /**
049:         * This is a generic abstract class to store a code-block of wavelet data, be
050:         * it quantized or not. This class does not have the notion of
051:         * components. Therefore, it should be used for data from a single
052:         * component. Subclasses should implement the different types of storage
053:         * (<tt>int</tt>, <tt>float</tt>, etc.).
054:         *
055:         * <P>The data is always stored in one array, of the type matching the data
056:         * type (i.e. for 'int' it's an 'int[]'). The data should be stored in the
057:         * array in standard scan-line order. That is the samples go from the top-left
058:         * corner of the code-block to the lower-right corner by line and then column.
059:         *
060:         * <P>The member variable 'offset' gives the index in the array of the first
061:         * data element (i.e. the top-left coefficient). The member variable 'scanw'
062:         * gives the width of the scan that is used to store the data, that can be
063:         * different from the width of the block. Element '(x,y)' of the code-block
064:         * (i.e. '(0,0)' is the top-left coefficient), will appear at position
065:         * 'offset+y*scanw+x' in the array of data.
066:         *
067:         * <P>The classes <tt>CBlkWTDataInt</tt> and <tt>CBlkWTDataFloat</tt>
068:         * provide implementations for <tt>int</tt> and <tt>float</tt> types
069:         * respectively.
070:         *
071:         * <P>The types of data are the same as those defined by the 'DataBlk' class.
072:         *
073:         * @see CBlkWTDataSrc
074:         *
075:         * @see jj2000.j2k.quantization.quantizer.CBlkQuantDataSrcEnc
076:         *
077:         * @see DataBlk
078:         *
079:         * @see CBlkWTDataInt
080:         *
081:         * @see CBlkWTDataFloat
082:         * */
083:        public abstract class CBlkWTData {
084:
085:            /** The horizontal coordinate of the upper-left corner of the code-block */
086:            public int ulx;
087:
088:            /** The vertical coordinate of the upper left corner of the code-block */
089:            public int uly;
090:
091:            /** The horizontal index of the code-block, within the subband */
092:            public int n;
093:
094:            /** The vertical index of the code-block, within the subband */
095:            public int m;
096:
097:            /** The subband in which this code-block is found */
098:            public SubbandAn sb;
099:
100:            /** The width of the code-block */
101:            public int w;
102:
103:            /** The height of the code-block */
104:            public int h;
105:
106:            /** The offset in the array of the top-left coefficient */
107:            public int offset;
108:
109:            /** The width of the scanlines used to store the data in the array */
110:            public int scanw;
111:
112:            /** The number of magnitude bits in the integer representation. This is
113:             * only used for quantized wavelet data. */
114:            public int magbits;
115:
116:            /** The WMSE scaling factor (multiplicative) to apply to the distortion
117:             * measures of the data of this code-block. By default it is 1.*/
118:            public float wmseScaling = 1f;
119:
120:            /** The value by which the absolute value of the data has to be divided in
121:             * order to get the real absolute value. This value is useful to obtain
122:             * the complement of 2 representation of a coefficient that is currently
123:             * using the sign-magnitude representation. */
124:            public double convertFactor = 1.0;
125:
126:            /**
127:             * The quantization step size of the code-block. The value is updated by
128:             * the quantizer module
129:             * */
130:            public double stepSize = 1.0;
131:
132:            /**
133:             * Number of ROI coefficients in the code-block
134:             * */
135:            public int nROIcoeff = 0;
136:
137:            /** Number of ROI magnitude bit-planes */
138:            public int nROIbp = 0;
139:
140:            /**
141:             * Returns the data type of the <tt>CBlkWTData</tt> object, as
142:             * defined in the DataBlk class.
143:             *
144:             * @return The data type of the object, as defined in the DataBlk class.
145:             *
146:             * @see DataBlk
147:             * */
148:            public abstract int getDataType();
149:
150:            /**
151:             * Returns the array containing the data, or null if there is no data. The
152:             * returned array is of the type returned by <tt>getDataType()</tt> (e.g.,
153:             * for <tt>TYPE_INT</tt>, it is a <tt>int[]</tt>).
154:             *
155:             * <P>Each implementing class should provide a type specific equivalent
156:             * method (e.g., <tt>getDataInt()</tt> in <tt>DataBlkInt</tt>) which
157:             * returns an array of the correct type explicitely and not through an
158:             * <tt>Object</tt>.
159:             *
160:             * @return The array containing the data, or <tt>null</tt> if there is no
161:             * data.
162:             *
163:             * @see #getDataType
164:             * */
165:            public abstract Object getData();
166:
167:            /**
168:             * Sets the data array to the specified one. The type of the specified
169:             * data array must match the one returned by <tt>getDataType()</tt> (e.g.,
170:             * for <tt>TYPE_INT</tt>, it should be a <tt>int[]</tt>). If the wrong
171:             * type of array is given a <tt>ClassCastException</tt> will be thrown.
172:             *
173:             * <P>The size of the array is not necessarily checked for consistency
174:             * with <tt>w</tt> and <tt>h</tt> or any other fields.
175:             *
176:             * <P>Each implementing class should provide a type specific equivalent
177:             * method (e.g., <tt>setDataInt()</tt> in <tt>DataBlkInt</tt>) which takes
178:             * an array of the correct type explicetely and not through an
179:             * <tt>Object</tt>.
180:             *
181:             * @param arr The new data array to use
182:             *
183:             * @see #getDataType
184:             * */
185:            public abstract void setData(Object arr);
186:
187:            /**
188:             * Returns a string of informations about the DataBlk
189:             *
190:             * @return Block dimensions and progressiveness in a string
191:             * */
192:            public String toString() {
193:                String typeString = "";
194:                switch (getDataType()) {
195:                case DataBlk.TYPE_BYTE:
196:                    typeString = "Unsigned Byte";
197:                    break;
198:                case DataBlk.TYPE_SHORT:
199:                    typeString = "Short";
200:                    break;
201:                case DataBlk.TYPE_INT:
202:                    typeString = "Integer";
203:                    break;
204:                case DataBlk.TYPE_FLOAT:
205:                    typeString = "Float";
206:                    break;
207:                }
208:
209:                return "CBlkWTData: " + "ulx= " + ulx + ", uly= " + uly
210:                        + ", code-block(" + m + "," + n + "), width= " + w
211:                        + ", height= " + h + ", offset= " + offset
212:                        + ", scan-width=" + scanw + ", type= " + typeString
213:                        + ", sb= " + sb + ", num. ROI coeff=" + nROIcoeff
214:                        + ", num. ROI bit-planes=" + nROIbp;
215:            }
216:        }
www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.