Home > Store

Building Imaging Applications with Javaâ„¢ Technology: Using AWT Imaging, Java 2Dâ„¢, and Javaâ„¢ Advanced Imaging (JAI)

Register your product to gain access to bonus material or receive a coupon.

Building Imaging Applications with Javaâ„¢ Technology: Using AWT Imaging, Java 2Dâ„¢, and Javaâ„¢ Advanced Imaging (JAI)

Book

  • Sorry, this book is no longer in print.
Not for Sale

About

Features

Description

  • Copyright 2001
  • Dimensions: 7-3/8x9-1/4
  • Pages: 880
  • Edition: 1st
  • Book
  • ISBN-10: 0-201-70074-3
  • ISBN-13: 978-0-201-70074-9

With the advent of Java 2D™ and the Java™ Advanced Imaging API (JAI), sophisticated imaging functionality can now be incorporated into Java™ applets and applications. This new capability facilitates the creation of cross-platform, Internet-enabled imaging software.

Written with practicing programmers in mind, Building Imaging Applications with Java™ Technology is a comprehensive, practical how-to guide. This book focuses on the information imaging programmers must know to produce high-quality imaging software with Advanced Window Toolkit (AWT), Java 2D, and JAI.

Building Imaging Applications with Java™ Technology reviews the fundamentals of AWT, the original set of Java imaging APIs. It also presents the more sophisticated imaging capabilities in Java 2D and introduces the powerful functionality of the new JAI APIs. You will learn how to create all types of graphics; how to load, render, and manipulate images; and how to perform image analysis. Numerous detailed examples from the real world of Internet, satellite, and medical imaging illustrate key concepts and techniques.

Specific topics include:
  • Loading images from JAR files
  • Describing shapes and the affine transformation in Java 2D
  • Designing a class library of shapes
  • Designing a component class for interactive drawing
  • Designing a component class for displaying images
  • Printing in Java 2D
  • Implementing pan and zoom
  • Implementing interactive rotate, shear, and flip
  • Manipulating images at the pixel level using the Java 2D API
  • Working with tiles in JAI to render large images
  • Image manipulation in JAI using affine transformation, projections, and warping
  • Image analysis in JAI, including edge detection, statistics, and region of interest computation (ROI)
  • Remote imaging using RMI and JAI
  • Internet imaging, including the use of Java 2D and JAI with servlets and JSP, the design of Web-based
  • imaging applications, and the Internet Imaging Protocol (IIP)
  • Using the new Image I/O framework to read and write images

"Putting It All Together" sections help you put vital concepts and techniques into practice with interactive examples using actual applications. All sample code in the book is available online.



0201700743B06192003

Sample Content

Online Sample Chapters

Applying Affine Transformation to Images

Rendering Images in JAI

Downloadable Sample Chapter

Click below for Sample Chapter related to this title:
rodriguesch11.pdf

rodriguesch7.pdf

Table of Contents



Preface.


1. Introduction.

Getting started with Java.

Type of Java Programs.

Approaches to Building an Application with Java.

Imaging.

Evolution of Java Imaging APIs.

How to Use This Book?

Conclusion.

I. AWT IMAGING.

2. AWT Image Loading.

Image Loading Approaches.

Asynchronous Image Loading in the AWT.

Image Loading Stages.

Image Loading Using the MediaTracker Class.

Loading Multiple Images.

Image Loading Problems.

Representing an Image.

Using the ImageLoader Class.

Loading Images from Jar Files.

Putting it all Together: MultiImageLoader Bean.

Conclusion.

3. Rendering Images in the AWT.

Describing an Image.

Overview of the AWT Imaging API.

Displaying an Image.

Using Image Filters.

Printing.

Putting it All Together: An Image Viewer Applet and Application.

Conclusion.

II. JAVA 2D.

4. Basics of Java 2D Graphics.

Application Coordinate Systems.

Device Coordinate Systems.

Describing a Shape.

Shapes.

Curves.

Introduction to Affine Transformation.

Conclusion.

5. Rendering Graphics in Java 2D.

Rendering Graphics Objects.

Using the Graphics Class.

Painting in AWT Components.

Painting in Swing Components.

Enter Java 2D.

Graphics2D Rendering Operations.

Interactive Graphics.

Building Interactive Drawing Applications.

Designing a Library of Shapes for Interactive Drawing.

Shapes Library Implementation.

Writing a Shapes Library Client.

Putting it All Together: The JavaPaintShop Application.

Conclusion.

6. Rendering Images in Java 2D.

Immediate Mode Model.

Bridging the Immediate Mode Model with the Push Model.

JPEG Viewer: A Simple Image Rendering Example.

Image Browser: An Example to Aggregate Images.

Designing a Component Class for Displaying Images.

Printing in Java 2.

Image Printing Requirements.

Putting it All Together: A Java 2D Image Viewer.

Conclusion.

7. Manipulating Images in Java 2D.

What is Interpolation?

Applying Affine Transformation to Images.

Image Manipulation Requirements.

Implementing a Canvas for Image Manipulation.

Pan.

Zoom.

Implementing Pan and Zoom Together.

Implementing a Lens.

Other Zooming Techniques.

Rotate, Shear and Flip.

Conclusion.

8. Manipulating Image Data.

Another Look at the BufferedImage Class.

Color Management.

Overview of the Color API in Java 2D.

Managing Image Data Storage.

Constructing a BufferedImage from Data.

Working with the Raster, SampleModel and DataBuffer Classes.

Calculating Image Statistics.

Obtaining Image Information.

Histogram.

Putting it All Together: An Image Data Viewer.

Image Data Manipulation Using Filters.

Adjusting Window/Level: An Example Using the LookTableOp.

Conclusion.

9. Building an ROI Application.

A Scenario.

Steps to Building an ROI Application.

Marking ROI Shapes.

Graphics Overlay.

ROI Measurements.

Designing APIs for ROI Analysis.

Building a Quantitative Analysis Application.

Conclusion.

III. JAVA ADVANCED IMAGIN (JAI).

10. Introduction to JAI.

JAI Architecture.

Pull Model API.

Overview of JAI.

Using the JAI class.

Getting Started.

A Simple Example to Load and Display an Image.

Putting it All Together: A PlanarImage Viewer.

Conclusion.

11. Rendering Images in JAI.

Rendering Hints.

Managing Memory.

Scheduling Tiles.

Reformatting an Image.

Extending the Border.

A Rendering Example.

Closer Look at the PlanarImage Class.

Using the RenderedOp Class.

Working with Tiles.

Tiled Image Viewer.

Writing to Pixels.

Creating an Aggregate Image.

Renderable Layer.

Conclusion.

12. Manipulating Images in JAI.

Interpolation in JAI.

Using the Affine Transform Operators.

Interactive Manipulation.

Cropping an Image.

Projections.

Warping.

Conclusion.

13. Manipulating Images in JAI.

Types of Operations.

Running Operators.

Spatial Operations.

Edge Detection.

Dithering.

Implementing a Lookup Table.

Adjusting Window/Level.

Point Operators.

Color Conversion.

Frequency Operators.

Conclusion.

14. JAI: Analyzing Images in JAI.

Computing Statistics.

Region of Interest Computation.

Putting It All Together: An ROI Analyzer Application.

Conclusion.

IV. NETWORK IMAGING.

15. Remote Imaging.

Client-server Architecture.

Distributed Computing.

What is RMI?

Remote Imaging Using RMI (Remote Method Invocation).

A Simple Client-Server example.

Remote Imaging with JAI.

Conclusion.

16. Internet Imaging.

A Scenario.

Understanding the World Wide Web.

What is a Servlet?

Getting Started with Servlets and JSP pages.

Using JAI with Servlets.

JavaServer Pages.

Architecting Web-based Imaging Applications.

Applets and Servlets.

Putting it all Together.

Internet Imaging Protocol (IIP).

Conclusion.

V. MISCELLANEOUS.

17. Image I/O.

Using the JPEG Codec.

Overview of the JAI Codec Package.

Using the Image I/O API.

Conclusion.

18. Summary and Conclusions.

Comparing AWT Imaging, Java 2D and JAI.

Visualization Framework.

VI. APPENDIXES.

Appendix A: Some Utility Classes.
Appendix B: JavaBeans.
Appendix C: A Bean Collection.
Bibliography.
Index.

Preface

The foundation for this book was laid several years ago. I always wanted to write a down-to-earth imaging book for programmers. Many books on image visualization and image processing have been written by academics and are very math oriented. To build real-world applications, programmers don't need to use mathematics that often. This book is written by a programmer for programmers.

My association with imaging goes back many years. Although I have worked in many different areas of electrical engineering and computer science, imaging has always been my first love. Ever since I wrote a simple image-processing program in Pascal back in 1984, I have never stopped being fascinated by imaging. Later, I was fortunate enough to work for one of the biggest medical imaging companies in the world. While working for this company, I realized how important imaging is for health care. Whether the context is diagnosis, surgical planning, or radiation therapy, imaging plays a very important role in many clinical applications.

Because of my long association with medical imaging, many examples in this book are related to medical applications. Besides my experience in the field of medical imaging, I have worked in the areas of satellite imaging, GIS, and recently Internet imaging. The examples in this book reflect my association with these fields. Because the Internet is playing an increasingly important role in all our lives, an entire chapter is devoted to Internet imaging.

When I conceived the idea of writing this book many years ago, my problem was how to write code that readers could run on their own machines. The Java technology came to me as a godsend, with its "write once, run anywhere" concept. I jumped right on the Java bandwagon. Although Java may not be the best language ever written, it embodies many radical concepts, some of which are not very new. These concepts have been implemented in a simple and practical manner in Java.

This book is neither a beginner's book nor a tutorial. Although some sections may look like a tutorial, this is basically a how-to book. Readers are expected to be familiar with Java concepts. An ideal reader will be one who has programmed in Java and has some knowledge of imaging concepts.



0201700743P05142001

Index

A ABORT, 64
Absolute transformation, 137
Abstract Windows Toolkit (AWT), 2, 8, 745
    imaging APIs, 59-63
    loading images in, 17-55
    rendering images in, 57-101
AC component, 746
ActionListener interface, 788
actionPerformed() method, 211, 269
ActiveX controls, 796
Acyclic gradient paints, 164
Acyclic graphs, 438n1
Acyclic rule
    and GradientPaint class, 163
AddCollection operator, 593
AddConst operations, 592
addImage method, 24
Addition operators, 592
Add operator, 593
addPoints() method, 572
Advance loading, 35
Aesthetics
    role of, in multimedia/e-commerce, 707
Affine operator, 535, 540, 572
    parameters, 540
Affine transformation, 10, 11, 105, 126-135, 271
    applying to images, 276-277
    applying to ROI, 620
    concatenation, 130
    homogeneous coordinates, 130-132
    rotation, 129
    scaling, 128-129
    for setting display and flip modes, 285-286
    translation, 127-128
AffineTransformation class
    inverse transformation methods in, 143
    utility methods, 143-144
Affine transformation operators
    Affine operator, 540
    in JAI, 535-540
    Rotate operator, 537-538
    Scale operator, 536
    Shear operator, 538-539
    Translate operator, 536
    Transpose operator, 539-540
AffineTransform class, 8, 10, 105, 126, 135-144, 146, 147, 271, 320, 535, 572
    AffineTransform constructors, 136-137
    concatenate methods, 139-140
    constructors, 136-137
    delta transformation, 142
    general transformation methods, 141
    inverse transformation, 143
    standard transformation methods, 137-139
    static methods, 144
    transforming a shape, 142
    transforming points, 141-142
    utility methods, 143-144
AffineTransformOp class, 276-277
    interpolation techniques supported by, 279
Affine warping, 455, 564-565
Aggregate image creation, 518-520
ALLBITS, 64
Alpha channel, 598
AlphaComposite class, 166
Alpha-red-green-blue (ARGB), 72
Animation, 35, 238
    and overlaying graphics, 251
Animation (cine) loop, 87
Annotation, 58
AnnoText object, 203
Anterior to posterior (AP)
    in medical imaging, 105
APIs. See Application program interfaces
AppFrame class, 88
Applet class
    images drawn on, 65
Applets, 4-5, 8, 9, 677, 720-725, 741
    components, 154
    edge detection performed by, 738
    image display with, 737
    image objects obtained in, 21
    image viewer run as, 86, 87
    Java Plug-in for running, 668-669
    loading images from JAR files in, 49-52
    RMI client as, 668
APPLET tag, 4
appletviewer, 5, 52
Application coordinate systems, 105-106
ApplicationFrame class
    code for, 783-788
    JavaPaintShop class extension of, 209
    printContents() method of, 261
Application program interfaces, 2, 6
    designing for ROI analysis, 396-408
    overview of JAI, 448
    pull model, 439-447
Applications
    with applets, servlets, JSPs, and JavaBeans, 725-737
    building with Java, 6-7
    image data viewer, 369-371
    image information retrieval, 364
    image objects obtained in, 21-22
    ROI analyzer, 622-643
    with servlets, JSPs, and JavaBeans, 715-720
    simple image viewer with MediaTracker, 24-25. See also Examples
applyTransform() method, 276, 277
AppMenuBar class, 788
Approximating curves, 391-392
Arc length parameterization, 123
Arcs, 112, 119, 158, 153
Arc2D class, 119
AreaAverageScaleFilter class, 70
Area object, 619
Area of interest, 445
Area operators, 457, 573, 576-583, 610
    convolution, 577
    image enhancement, 578-579
    KernelJAI class, 576
    spatial filtering, 579-583
Area statistic, 402, 403, 432
ARGB. See Alpha-red-green-blue
Arguments, 650
Arithmetic coding, 747
Arithmetic operators, 456, 592-596, 610
Aspect ratio, 443
Astronomy
    and imaging, 1
Asynchronous image loading, 17-20, 35, 55
AttributedCharacterIterator interface, 169
AttributeSetterUtil class, 216
    code for, 217-218
    static methods in, 218
atx variable, 285, 286
AWT. See Abstract Windows Toolkit
AWT components
    painting in, 154-157
AWT Image, 653, 658, 675
    BufferedImage converted to, 226-227
    converting to BufferedImage, 227-228
awtImage attribute, 240, 241
AWT Image object
    converting to PlanarImage object, 467
AWT images
    image-rendering component hierarchy for displaying, 780
AWTImageViewer class
    code for, 658-660
AWT imaging, 10, 437
    and image manipulation, 271
    Java2D and JAI compared with, 778-779
    multiple-page printing in, 253

B Background color, 63, 148
BandCombine operator parameters, 602
Banded raster, 349
BandedSampleModel constructor, 347
BandMerge operator, 782
Band(s), 340, 364
    interleaving, 344, 345, 355
    offset, 344
BandSelect operator, 602, 635, 644
    applying, 603
    parameters, 602
Banks, 342
BasicStroke class, 160
BeanBox window
    FileBrowser bean running in, 814
    MultiImageLoader bean running in, 810
BeanInfo class, 5, 790, 791
Beans, 5-6
    chart bean suite, 823-828
    defined, 789
    execution of, 795-796
    FileBrowser, 813-823
    instantiating/running, 795-796
    JSP applications with, 711
    JSPs with, 710-720
    MultiImageLoader, 809-813
    packaging, 806-807
    and persistence, 802
    structure and behavior of, 793
    visibility, 793
Bean target class, 807
Bezier curve, 120, 124, 125, 392
Bicubic interpolation, 572
Bilinear interpolation, 273, 274, 279, 572
Binarize operator, 782
Binary large object (BLOB), 707
Blood flow measurements, 390
Blurring images, 579
BMP, 763
Bone mineral densitometry (BMD), 390
Book class, 253, 258-259
BorderExtender class
    hierarchy, 485
    methods of, 486
  &n

Updates

Errata

Click below for Errata related to this title:
Errata

Submit Errata

More Information

InformIT Promotional Mailings & Special Offers

I would like to receive exclusive offers and hear about products from InformIT and its family of brands. I can unsubscribe at any time.

Overview


Pearson Education, Inc., 221 River Street, Hoboken, New Jersey 07030, (Pearson) presents this site to provide information about products and services that can be purchased through this site.

This privacy notice provides an overview of our commitment to privacy and describes how we collect, protect, use and share personal information collected through this site. Please note that other Pearson websites and online products and services have their own separate privacy policies.

Collection and Use of Information


To conduct business and deliver products and services, Pearson collects and uses personal information in several ways in connection with this site, including:

Questions and Inquiries

For inquiries and questions, we collect the inquiry or question, together with name, contact details (email address, phone number and mailing address) and any other additional information voluntarily submitted to us through a Contact Us form or an email. We use this information to address the inquiry and respond to the question.

Online Store

For orders and purchases placed through our online store on this site, we collect order details, name, institution name and address (if applicable), email address, phone number, shipping and billing addresses, credit/debit card information, shipping options and any instructions. We use this information to complete transactions, fulfill orders, communicate with individuals placing orders or visiting the online store, and for related purposes.

Surveys

Pearson may offer opportunities to provide feedback or participate in surveys, including surveys evaluating Pearson products, services or sites. Participation is voluntary. Pearson collects information requested in the survey questions and uses the information to evaluate, support, maintain and improve products, services or sites, develop new products and services, conduct educational research and for other purposes specified in the survey.

Contests and Drawings

Occasionally, we may sponsor a contest or drawing. Participation is optional. Pearson collects name, contact information and other information specified on the entry form for the contest or drawing to conduct the contest or drawing. Pearson may collect additional personal information from the winners of a contest or drawing in order to award the prize and for tax reporting purposes, as required by law.

Newsletters

If you have elected to receive email newsletters or promotional mailings and special offers but want to unsubscribe, simply email information@informit.com.

Service Announcements

On rare occasions it is necessary to send out a strictly service related announcement. For instance, if our service is temporarily suspended for maintenance we might send users an email. Generally, users may not opt-out of these communications, though they can deactivate their account information. However, these communications are not promotional in nature.

Customer Service

We communicate with users on a regular basis to provide requested services and in regard to issues relating to their account we reply via email or phone in accordance with the users' wishes when a user submits their information through our Contact Us form.

Other Collection and Use of Information


Application and System Logs

Pearson automatically collects log data to help ensure the delivery, availability and security of this site. Log data may include technical information about how a user or visitor connected to this site, such as browser type, type of computer/device, operating system, internet service provider and IP address. We use this information for support purposes and to monitor the health of the site, identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents and appropriately scale computing resources.

Web Analytics

Pearson may use third party web trend analytical services, including Google Analytics, to collect visitor information, such as IP addresses, browser types, referring pages, pages visited and time spent on a particular site. While these analytical services collect and report information on an anonymous basis, they may use cookies to gather web trend information. The information gathered may enable Pearson (but not the third party web trend services) to link information with application and system log data. Pearson uses this information for system administration and to identify problems, improve service, detect unauthorized access and fraudulent activity, prevent and respond to security incidents, appropriately scale computing resources and otherwise support and deliver this site and its services.

Cookies and Related Technologies

This site uses cookies and similar technologies to personalize content, measure traffic patterns, control security, track use and access of information on this site, and provide interest-based messages and advertising. Users can manage and block the use of cookies through their browser. Disabling or blocking certain cookies may limit the functionality of this site.

Do Not Track

This site currently does not respond to Do Not Track signals.

Security


Pearson uses appropriate physical, administrative and technical security measures to protect personal information from unauthorized access, use and disclosure.

Children


This site is not directed to children under the age of 13.

Marketing


Pearson may send or direct marketing communications to users, provided that

  • Pearson will not use personal information collected or processed as a K-12 school service provider for the purpose of directed or targeted advertising.
  • Such marketing is consistent with applicable law and Pearson's legal obligations.
  • Pearson will not knowingly direct or send marketing communications to an individual who has expressed a preference not to receive marketing.
  • Where required by applicable law, express or implied consent to marketing exists and has not been withdrawn.

Pearson may provide personal information to a third party service provider on a restricted basis to provide marketing solely on behalf of Pearson or an affiliate or customer for whom Pearson is a service provider. Marketing preferences may be changed at any time.

Correcting/Updating Personal Information


If a user's personally identifiable information changes (such as your postal address or email address), we provide a way to correct or update that user's personal data provided to us. This can be done on the Account page. If a user no longer desires our service and desires to delete his or her account, please contact us at customer-service@informit.com and we will process the deletion of a user's account.

Choice/Opt-out


Users can always make an informed choice as to whether they should proceed with certain services offered by InformIT. If you choose to remove yourself from our mailing list(s) simply visit the following page and uncheck any communication you no longer want to receive: www.informit.com/u.aspx.

Sale of Personal Information


Pearson does not rent or sell personal information in exchange for any payment of money.

While Pearson does not sell personal information, as defined in Nevada law, Nevada residents may email a request for no sale of their personal information to NevadaDesignatedRequest@pearson.com.

Supplemental Privacy Statement for California Residents


California residents should read our Supplemental privacy statement for California residents in conjunction with this Privacy Notice. The Supplemental privacy statement for California residents explains Pearson's commitment to comply with California law and applies to personal information of California residents collected in connection with this site and the Services.

Sharing and Disclosure


Pearson may disclose personal information, as follows:

  • As required by law.
  • With the consent of the individual (or their parent, if the individual is a minor)
  • In response to a subpoena, court order or legal process, to the extent permitted or required by law
  • To protect the security and safety of individuals, data, assets and systems, consistent with applicable law
  • In connection the sale, joint venture or other transfer of some or all of its company or assets, subject to the provisions of this Privacy Notice
  • To investigate or address actual or suspected fraud or other illegal activities
  • To exercise its legal rights, including enforcement of the Terms of Use for this site or another contract
  • To affiliated Pearson companies and other companies and organizations who perform work for Pearson and are obligated to protect the privacy of personal information consistent with this Privacy Notice
  • To a school, organization, company or government agency, where Pearson collects or processes the personal information in a school setting or on behalf of such organization, company or government agency.

Links


This web site contains links to other sites. Please be aware that we are not responsible for the privacy practices of such other sites. We encourage our users to be aware when they leave our site and to read the privacy statements of each and every web site that collects Personal Information. This privacy statement applies solely to information collected by this web site.

Requests and Contact


Please contact us about this Privacy Notice or if you have any requests or questions relating to the privacy of your personal information.

Changes to this Privacy Notice


We may revise this Privacy Notice through an updated posting. We will identify the effective date of the revision in the posting. Often, updates are made to provide greater clarity or to comply with changes in regulatory requirements. If the updates involve material changes to the collection, protection, use or disclosure of Personal Information, Pearson will provide notice of the change through a conspicuous notice on this site or other appropriate way. Continued use of the site after the effective date of a posted revision evidences acceptance. Please contact us if you have questions or concerns about the Privacy Notice or any objection to any revisions.

Last Update: November 17, 2020