Java Doc for OverviewsEmbedder.java in  » GIS » GeoTools-2.4.1 » it » geosolutions » utils » imageoverviews » 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 » GIS » GeoTools 2.4.1 » it.geosolutions.utils.imageoverviews 
Source Cross Reference  Class Diagram Java Document (Java Doc) 


java.lang.Object
   it.geosolutions.utils.progress.ProgressManager
      it.geosolutions.utils.imageoverviews.OverviewsEmbedder

OverviewsEmbedder
public class OverviewsEmbedder extends ProgressManager implements Runnable,ProcessingEventListener(Code)
 Example of usage:
 
 OverviewsEmbedder -s "/usr/home/tmp" -w *.tiff -t "512,512" -f 32 -n 8 -a nn -c 512
 
 <pre>
 

HINT: Take more memory as the 64Mb default by using the following Java Options<BR/> -Xmx1024M - Xms512M


author:
   Simone Giannecchini (GeoSolutions)
author:
   Alessio Fabiani (GeoSolutions)
since:
   2.3.x
version:
   0.2


Field Summary
final public static  BorderExtenderDEFAULT_BORDER_EXTENDER
     Default border extender.
final public  booleanDEFAULT_IMAGEIO_CACHING_BEHAVIOUR
     Default imageio caching behaviour.
final public static  InterpolationDEFAULT_INTERPOLATION
     Default interpolation.
final public static  float[]DEFAULT_KERNEL_GAUSSIAN
     Default filter for subsampling averaged.
final public  intDEFAULT_RESOLUTION_STEPS
     Default number of resolution steps..
final public  intDEFAULT_THREAD_PRIORITY
     Default thread priority.
final public static  longDEFAULT_TILE_CHACHE_SIZE
     Default tile cache size.

Constructor Summary
public  OverviewsEmbedder()
     Simple constructor for a pyramid generator.

Method Summary
public  voidexceptionOccurred(ExceptionEvent event)
    
public  intgetDownsampleStep()
    
public  float[]getLowPassFilter()
    
public  voidgetNotification(ProcessingEvent event)
    
public  StringgetSourcePath()
    
public  intgetTileHeight()
    
public  intgetTileWidth()
    
public static  voidmain(String[] args)
     This tool is designed to be used by the command line using this main class but it can also be used from an GUI by using the setters and getters.
public  voidrun()
    
public  voidsetBorderExtender(BorderExtender borderExtender)
    
public  voidsetDownsampleStep(int downsampleWH)
    
public  voidsetInterp(Interpolation interp)
    
public  voidsetLowPassFilter(float[] lowPassFilter)
    
public  voidsetSourcePath(String sourcePath)
    
public  voidsetTileCacheSize(long tileCacheSize)
    
public  voidsetTileHeight(int tileHeight)
    
public  voidsetTileWidth(int tileWidth)
    
public  voidsetUseImageIOCache(boolean useImageIOCache)
    
final public  voidsetWildcardString(String wildcardString)
     Sets the wildcar string to use.

Field Detail
DEFAULT_BORDER_EXTENDER
final public static BorderExtender DEFAULT_BORDER_EXTENDER(Code)
Default border extender.



DEFAULT_IMAGEIO_CACHING_BEHAVIOUR
final public boolean DEFAULT_IMAGEIO_CACHING_BEHAVIOUR(Code)
Default imageio caching behaviour.



DEFAULT_INTERPOLATION
final public static Interpolation DEFAULT_INTERPOLATION(Code)
Default interpolation.



DEFAULT_KERNEL_GAUSSIAN
final public static float[] DEFAULT_KERNEL_GAUSSIAN(Code)
Default filter for subsampling averaged.



DEFAULT_RESOLUTION_STEPS
final public int DEFAULT_RESOLUTION_STEPS(Code)
Default number of resolution steps..



DEFAULT_THREAD_PRIORITY
final public int DEFAULT_THREAD_PRIORITY(Code)
Default thread priority.



DEFAULT_TILE_CHACHE_SIZE
final public static long DEFAULT_TILE_CHACHE_SIZE(Code)
Default tile cache size.




Constructor Detail
OverviewsEmbedder
public OverviewsEmbedder()(Code)
Simple constructor for a pyramid generator. Use the input string in order to read an image.




Method Detail
exceptionOccurred
public void exceptionOccurred(ExceptionEvent event)(Code)



getDownsampleStep
public int getDownsampleStep()(Code)



getLowPassFilter
public float[] getLowPassFilter()(Code)



getNotification
public void getNotification(ProcessingEvent event)(Code)



getSourcePath
public String getSourcePath()(Code)



getTileHeight
public int getTileHeight()(Code)



getTileWidth
public int getTileWidth()(Code)



main
public static void main(String[] args) throws IllegalArgumentException, IOException, InterruptedException(Code)
This tool is designed to be used by the command line using this main class but it can also be used from an GUI by using the setters and getters.
Parameters:
  args -
throws:
  IOException -
throws:
  IllegalArgumentException -
throws:
  InterruptedException -



run
public void run()(Code)



setBorderExtender
public void setBorderExtender(BorderExtender borderExtender)(Code)



setDownsampleStep
public void setDownsampleStep(int downsampleWH)(Code)



setInterp
public void setInterp(Interpolation interp)(Code)



setLowPassFilter
public void setLowPassFilter(float[] lowPassFilter)(Code)



setSourcePath
public void setSourcePath(String sourcePath)(Code)



setTileCacheSize
public void setTileCacheSize(long tileCacheSize)(Code)



setTileHeight
public void setTileHeight(int tileHeight)(Code)



setTileWidth
public void setTileWidth(int tileWidth)(Code)



setUseImageIOCache
public void setUseImageIOCache(boolean useImageIOCache)(Code)



setWildcardString
final public void setWildcardString(String wildcardString)(Code)
Sets the wildcar string to use.
Parameters:
  wildcardString - the wildcardString to set



Fields inherited from it.geosolutions.utils.progress.ProgressManager
final protected ArgumentBuilder arguments(Code)(Java Doc)
protected CommandLine cmdLine(Code)(Java Doc)
final protected List cmdOpts(Code)(Java Doc)
final protected Parser cmdParser(Code)(Java Doc)
protected Option helpOpt(Code)(Java Doc)
final protected DefaultOptionBuilder optionBuilder(Code)(Java Doc)
protected Group optionsGroup(Code)(Java Doc)
protected int priority(Code)(Java Doc)
protected DefaultOption priorityOpt(Code)(Java Doc)
final protected boolean sendDelayedMessages(Code)(Java Doc)
protected DefaultOption versionOpt(Code)(Java Doc)

Methods inherited from it.geosolutions.utils.progress.ProgressManager
final public synchronized void addProcessingEventListener(ProcessingEventListener listener)(Code)(Java Doc)
public void dispose()(Code)(Java Doc)
protected synchronized void fireEvent(String string, double percentage)(Code)(Java Doc)
protected synchronized void fireException(String string, double percentage, Exception ex)(Code)(Java Doc)
protected synchronized void fireException(Exception ex)(Code)(Java Doc)
final public boolean getStopThread()(Code)(Java Doc)
final public synchronized void removeAllProcessingEventListeners()(Code)(Java Doc)
final public synchronized void removeProcessingEventListener(ProcessingEventListener listener)(Code)(Java Doc)
abstract public void run()(Code)(Java Doc)
protected void sendEvent(ProgressEventDispatchThreadEventLauncher eventLauncher)(Code)(Java Doc)
final public void stopThread()(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.