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


jj2000.j2k.wavelet.WaveletFilter

All known Subclasses:   jj2000.j2k.wavelet.analysis.AnWTFilter,  jj2000.j2k.wavelet.synthesis.SynWTFilter,
WaveletFilter
public interface WaveletFilter (Code)
This interface defines how a wavelet filter implementation should present itself. This interface defines only the commonalities between the analysis and synthesis filters. The AnWTFilter and SynWTFilter classes provide the specifics of analysis and synthesis filters.

Both analysis and filters must be able to return the extent of the negative and positive support for both synthesis and analysis sides. This simplifies the sue of some functionalities that need extra information about the filters.
See Also:   jj2000.j2k.wavelet.analysis.AnWTFilter
See Also:   jj2000.j2k.wavelet.synthesis.SynWTFilter



Field Summary
final public static  intWT_FILTER_FLOAT_CONVOL
    
final public static  intWT_FILTER_FLOAT_LIFT
    
final public static  intWT_FILTER_INT_LIFT
    


Method Summary
public  intgetAnHighNegSupport()
     Returns the negative support of the high-pass analysis filter.
public  intgetAnHighPosSupport()
     Returns the positive support of the high-pass analysis filter.
public  intgetAnLowNegSupport()
     Returns the negative support of the low-pass analysis filter.
public  intgetAnLowPosSupport()
     Returns the positive support of the low-pass analysis filter.
public  intgetDataType()
     Returns the type of data on which this filter works, as defined in the DataBlk interface.
public  intgetImplType()
     Returns the implementation type of this filter, as defined in this class, such as WT_FILTER_INT_LIFT, WT_FILTER_FLOAT_LIFT, WT_FILTER_FLOAT_CONVOL.
public  intgetSynHighNegSupport()
     Returns the negative support of the high-pass synthesis filter.
public  intgetSynHighPosSupport()
     Returns the positive support of the high-pass synthesis filter.
public  intgetSynLowNegSupport()
     Returns the negative support of the low-pass synthesis filter.
public  intgetSynLowPosSupport()
     Returns the positive support of the low-pass synthesis filter.
public  booleanisReversible()
     Returns the reversibility of the filter.
public  booleanisSameAsFullWT(int tailOvrlp, int headOvrlp, int inLen)
     Returns true if the wavelet filter computes or uses the same "inner" subband coefficient as the full frame wavelet transform, and false otherwise.

Field Detail
WT_FILTER_FLOAT_CONVOL
final public static int WT_FILTER_FLOAT_CONVOL(Code)
The ID for floatring-poitn convolution implementations



WT_FILTER_FLOAT_LIFT
final public static int WT_FILTER_FLOAT_LIFT(Code)
The ID for floating-point lifting spteps implementations



WT_FILTER_INT_LIFT
final public static int WT_FILTER_INT_LIFT(Code)
The ID for integer lifting spteps implementations





Method Detail
getAnHighNegSupport
public int getAnHighNegSupport()(Code)
Returns the negative support of the high-pass analysis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the high-pass analysis filter inthe negative direction




getAnHighPosSupport
public int getAnHighPosSupport()(Code)
Returns the positive support of the high-pass analysis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the high-pass analysis filter inthe positive direction




getAnLowNegSupport
public int getAnLowNegSupport()(Code)
Returns the negative support of the low-pass analysis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the low-pass analysis filter inthe negative direction




getAnLowPosSupport
public int getAnLowPosSupport()(Code)
Returns the positive support of the low-pass analysis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the low-pass analysis filter inthe positive direction




getDataType
public int getDataType()(Code)
Returns the type of data on which this filter works, as defined in the DataBlk interface. The type of data as defined in the DataBlk interface.
See Also:   jj2000.j2k.image.DataBlk



getImplType
public int getImplType()(Code)
Returns the implementation type of this filter, as defined in this class, such as WT_FILTER_INT_LIFT, WT_FILTER_FLOAT_LIFT, WT_FILTER_FLOAT_CONVOL. The implementation type of this filter:WT_FILTER_INT_LIFT, WT_FILTER_FLOAT_LIFT, WT_FILTER_FLOAT_CONVOL.



getSynHighNegSupport
public int getSynHighNegSupport()(Code)
Returns the negative support of the high-pass synthesis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the high-pass synthesis filter inthe negative direction




getSynHighPosSupport
public int getSynHighPosSupport()(Code)
Returns the positive support of the high-pass synthesis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the high-pass synthesis filter inthe positive direction




getSynLowNegSupport
public int getSynLowNegSupport()(Code)
Returns the negative support of the low-pass synthesis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the low-pass synthesis filter inthe negative direction




getSynLowPosSupport
public int getSynLowPosSupport()(Code)
Returns the positive support of the low-pass synthesis filter. That is the number of taps of the filter in the negative direction.

A MORE PRECISE DEFINITION IS NEEDED The number of taps of the low-pass synthesis filter inthe positive direction




isReversible
public boolean isReversible()(Code)
Returns the reversibility of the filter. A filter is considered reversible if it is suitable for lossless coding. true if the filter is reversible, false otherwise.



isSameAsFullWT
public boolean isSameAsFullWT(int tailOvrlp, int headOvrlp, int inLen)(Code)
Returns true if the wavelet filter computes or uses the same "inner" subband coefficient as the full frame wavelet transform, and false otherwise. In particular, for block based transforms with reduced overlap, this method should return false. The term "inner" indicates that this applies only with respect to the coefficient that are not affected by image boundaries processings such as symmetric extension, since there is not reference method for this.

The result depends on the length of the allowed overlap when compared to the overlap required by the wavelet filter. It also depends on how overlap processing is implemented in the wavelet filter.
Parameters:
  tailOvrlp - This is the number of samples in the inputsignal before the first sample to filter that can be used foroverlap.
Parameters:
  headOvrlp - This is the number of samples in the inputsignal after the last sample to filter that can be used foroverlap.
Parameters:
  inLen - This is the lenght of the input signal to filter.Therequired number of samples in the input signal after the last sampledepends on the length of the input signal. true if the overlaps are large enough and correct processing is performed, false otherwise.




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