Java Doc for EBCOTRateAllocator.java in  » 6.0-JDK-Modules » Java-Advanced-Imaging » jj2000 » j2k » entropy » encoder » 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.entropy.encoder 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   jj2000.j2k.image.ImgDataAdapter
      jj2000.j2k.entropy.encoder.PostCompRateAllocator
         jj2000.j2k.entropy.encoder.EBCOTRateAllocator

EBCOTRateAllocator
public class EBCOTRateAllocator extends PostCompRateAllocator (Code)
This implements the EBCOT post compression rate allocation algorithm. This algorithm finds the most suitable truncation points for the set of code-blocks, for each layer target bitrate. It works by first collecting the rate distortion info from all code-blocks, in all tiles and all components, and then running the rate-allocation on the whole image at once, for each layer.

This implementation also provides some timing features. They can be enabled by setting the 'DO_TIMING' constant of this class to true and recompiling. The timing uses the 'System.currentTimeMillis()' Java API call, which returns wall clock time, not the actual CPU time used. The timing results will be printed on the message output. Since the times reported are wall clock times and not CPU usage times they can not be added to find the total used time (i.e. some time might be counted in several places). When timing is disabled ('DO_TIMING' is false) there is no penalty if the compiler performs some basic optimizations. Even if not the penalty should be negligeable.
See Also:   PostCompRateAllocator
See Also:   CodedCBlkDataSrcEnc
See Also:   jj2000.j2k.codestream.writer.CodestreamWriter




Constructor Summary
public  EBCOTRateAllocator(CodedCBlkDataSrcEnc src, LayersInfo lyrs, CodestreamWriter writer, J2KImageWriteParamJava wp)
     Initializes the EBCOT rate allocator of entropy coded data.

Method Summary
public  voidfinalize()
     Prints the timing information, if collected, and calls 'finalize' on the super class.
public  voidinitialize()
     Initializes the layers array.
public  voidrunAndWrite()
     Runs the rate allocation algorithm and writes the data to the bit stream writer object provided to the constructor.
public  voidwriteCompPosResLy(int t, int rs, int re, int cs, int ce, int[][] lys, int lye)
    
public  voidwriteLyResCompPos(int t, int rs, int re, int cs, int ce, int[][] lys, int lye)
    
public  voidwritePosCompResLy(int t, int rs, int re, int cs, int ce, int[][] lys, int lye)
    
public  voidwriteResLyCompPos(int t, int rs, int re, int cs, int ce, int lys, int lye)
    
public  voidwriteResPosCompLy(int t, int rs, int re, int cs, int ce, int[][] lys, int lye)
    


Constructor Detail
EBCOTRateAllocator
public EBCOTRateAllocator(CodedCBlkDataSrcEnc src, LayersInfo lyrs, CodestreamWriter writer, J2KImageWriteParamJava wp)(Code)
Initializes the EBCOT rate allocator of entropy coded data. The layout of layers, and their bitrate constraints, is specified by the 'lyrs' parameter.
Parameters:
  src - The source of entropy coded data.
Parameters:
  lyrs - The layers layout specification.
Parameters:
  writer - The bit stream writer.
See Also:   ProgressionType




Method Detail
finalize
public void finalize() throws Throwable(Code)
Prints the timing information, if collected, and calls 'finalize' on the super class.



initialize
public void initialize() throws IOException(Code)
Initializes the layers array. This must be called after the main header has been entirely written or simulated, so as to take its overhead into account. This method will get all the code-blocks and then initialize the target bitrates for each layer, according to the specifications.



runAndWrite
public void runAndWrite() throws IOException(Code)
Runs the rate allocation algorithm and writes the data to the bit stream writer object provided to the constructor.



writeCompPosResLy
public void writeCompPosResLy(int t, int rs, int re, int cs, int ce, int[][] lys, int lye) throws IOException(Code)
Write a piece of bit stream according to the COMP_POS_RES_LY_PROG progression mode and between given bounds
Parameters:
  t - Tile index.
Parameters:
  rs - First resolution level index.
Parameters:
  re - Last resolution level index.
Parameters:
  cs - First component index.
Parameters:
  ce - Last component index.
Parameters:
  lys - First layer index for each component and resolution.
Parameters:
  lye - Index of the last layer.



writeLyResCompPos
public void writeLyResCompPos(int t, int rs, int re, int cs, int ce, int[][] lys, int lye) throws IOException(Code)
Write a piece of bit stream according to the LY_RES_COMP_POS_PROG progression mode and between given bounds
Parameters:
  t - Tile index.
Parameters:
  rs - First resolution level index.
Parameters:
  re - Last resolution level index.
Parameters:
  cs - First component index.
Parameters:
  ce - Last component index.
Parameters:
  lys - First layer index for each component and resolution.
Parameters:
  lye - Index of the last layer.



writePosCompResLy
public void writePosCompResLy(int t, int rs, int re, int cs, int ce, int[][] lys, int lye) throws IOException(Code)
Write a piece of bit stream according to the COMP_POS_RES_LY_PROG progression mode and between given bounds
Parameters:
  t - Tile index.
Parameters:
  rs - First resolution level index.
Parameters:
  re - Last resolution level index.
Parameters:
  cs - First component index.
Parameters:
  ce - Last component index.
Parameters:
  lys - First layer index for each component and resolution.
Parameters:
  lye - Index of the last layer.



writeResLyCompPos
public void writeResLyCompPos(int t, int rs, int re, int cs, int ce, int lys, int lye) throws IOException(Code)
Write a piece of bit stream according to the RES_LY_COMP_POS_PROG progression mode and between given bounds
Parameters:
  t - Tile index.
Parameters:
  rs - First resolution level index.
Parameters:
  re - Last resolution level index.
Parameters:
  cs - First component index.
Parameters:
  ce - Last component index.
Parameters:
  lys - First layer index for each component and resolution.
Parameters:
  lye - Index of the last layer.



writeResPosCompLy
public void writeResPosCompLy(int t, int rs, int re, int cs, int ce, int[][] lys, int lye) throws IOException(Code)
Write a piece of bit stream according to the RES_POS_COMP_LY_PROG progression mode and between given bounds
Parameters:
  t - Tile index.
Parameters:
  rs - First resolution level index.
Parameters:
  re - Last resolution level index.
Parameters:
  cs - First component index.
Parameters:
  ce - Last component index.
Parameters:
  lys - First layer index for each component and resolution.
Parameters:
  lye - Last layer index.



Fields inherited from jj2000.j2k.entropy.encoder.PostCompRateAllocator
final public static char OPT_PREFIX(Code)(Java Doc)
CodestreamWriter bsWriter(Code)(Java Doc)
HeaderEncoder headEnc(Code)(Java Doc)
protected int numLayers(Code)(Java Doc)
protected CodedCBlkDataSrcEnc src(Code)(Java Doc)
protected J2KImageWriteParamJava wp(Code)(Java Doc)

Methods inherited from jj2000.j2k.entropy.encoder.PostCompRateAllocator
public static PostCompRateAllocator createInstance(CodedCBlkDataSrcEnc src, float rate, CodestreamWriter bw, J2KImageWriteParamJava wp)(Code)(Java Doc)
public int getNumLayers()(Code)(Java Doc)
public static String[][] getParameterInfo()(Code)(Java Doc)
abstract public void initialize() throws IOException(Code)(Java Doc)
abstract public void runAndWrite() throws IOException(Code)(Java Doc)
public void setHeaderEncoder(HeaderEncoder headEnc)(Code)(Java Doc)

Fields inherited from jj2000.j2k.image.ImgDataAdapter
protected ImgData imgdatasrc(Code)(Java Doc)
protected int tIdx(Code)(Java Doc)

Methods inherited from jj2000.j2k.image.ImgDataAdapter
public int getCompImgHeight(int c)(Code)(Java Doc)
public int getCompImgWidth(int c)(Code)(Java Doc)
public int getCompSubsX(int c)(Code)(Java Doc)
public int getCompSubsY(int c)(Code)(Java Doc)
public int getCompULX(int c)(Code)(Java Doc)
public int getCompULY(int c)(Code)(Java Doc)
public int getImgHeight()(Code)(Java Doc)
public int getImgULX()(Code)(Java Doc)
public int getImgULY()(Code)(Java Doc)
public int getImgWidth()(Code)(Java Doc)
public int getNomRangeBits(int c)(Code)(Java Doc)
public int getNomTileHeight()(Code)(Java Doc)
public int getNomTileWidth()(Code)(Java Doc)
public int getNumComps()(Code)(Java Doc)
public Point getNumTiles(Point co)(Code)(Java Doc)
public int getNumTiles()(Code)(Java Doc)
public Point getTile(Point co)(Code)(Java Doc)
public int getTileCompHeight(int t, int c)(Code)(Java Doc)
public int getTileCompWidth(int t, int c)(Code)(Java Doc)
public int getTileHeight()(Code)(Java Doc)
public int getTileIdx()(Code)(Java Doc)
public int getTilePartULX()(Code)(Java Doc)
public int getTilePartULY()(Code)(Java Doc)
public int getTileWidth()(Code)(Java Doc)
public void nextTile()(Code)(Java Doc)
public void setTile(int x, int y)(Code)(Java Doc)

Methods inherited from java.lang.Object
native protected Object clone() throws CloneNotSupportedException(Code)(Java Doc)
public boolean equals(Object obj)(Code)(Java Doc)
protected void finalize() throws Throwable(Code)(Java Doc)
final native public Class getClass()(Code)(Java Doc)
native public int hashCode()(Code)(Java Doc)
final native public void notify()(Code)(Java Doc)
final native public void notifyAll()(Code)(Java Doc)
public String toString()(Code)(Java Doc)
final native public void wait(long timeout) throws InterruptedException(Code)(Java Doc)
final public void wait(long timeout, int nanos) throws InterruptedException(Code)(Java Doc)
final public void wait() throws InterruptedException(Code)(Java Doc)

www.java2java.com | Contact Us
Copyright 2009 - 12 Demo Source and Support. All rights reserved.
All other trademarks are property of their respective owners.