Algorithms For Image Processing And Computer Vision 2E 9780470643853

副标题:无

作   者:Parker

分类号:

ISBN:9780470643853

微信扫一扫,移动浏览光盘

简介


  A cookbook of algorithms for common image processingapplications

  Thanks to advances in computer hardware and software,algorithms have been developed that support sophisticated imageprocessing without requiring an extensive background inmathematics. This bestselling book has been fully updated with thenewest of these, including 2D vision methods in content-basedsearches and the use of graphics cards as image processingcomputational aids. It’s an ideal reference for software engineersand developers, advanced programmers, graphics programmers,scientists, and other specialists who require highly specializedimage processing.

  Algorithms now exist for a wide variety of sophisticated imageprocessing applications required by software engineers anddevelopers, advanced programmers, graphics programmers, scientists,and related specialists

This bestselling book has been completely updated to include thelatest algorithms, including 2D vision methods in content-basedsearches, details on modern classifier methods, and graphics cardsused as image processing computational aids

Saves hours of mathematical calculating by using distributedprocessing and GPU programming, and gives non-mathematicians theshortcuts needed to program relatively sophisticatedapplications.

Algorithms for Image Processing and Computer Vision, 2nd Editionprovides the tools to speed development of image processingapplications.


目录


Preface.

Chapter 1 Practical Aspects of a Vision System — Image Display,Input/Output, and Library Calls.

OpenCV.

The Basic OpenCV Code.

The IplImage Data Structure.

Reading and Writing Images.

Image Display.

An Example.

Image Capture.

Interfacing with the AIPCV Library.

Website Files.

References.

Chapter 2 Edge-Detection Techniques.

The Purpose of Edge Detection.

Traditional Approaches and Theory.

Models of Edges.

Noise.

Derivative Operators.

Template-Based Edge Detection.

Edge Models: The Marr-Hildreth Edge Detector.

The Canny Edge Detector.

The Shen-Castan (ISEF) Edge Detector.

A Comparison of Two Optimal Edge Detectors.

Color Edges.

Source Code for the Marr-Hildreth Edge Detector.

Source Code for the Canny Edge Detector.

Source Code for the Shen-Castan Edge Detector.

Website Files.

References.

Chapter 3 Digital Morphology.

Morphology Defined.

Connectedness.

Elements of Digital Morphology—Binary Operations.

Binary Dilation.

Implementing Binary Dilation.

Binary Erosion.

Implementation of Binary Erosion.

Opening and Closing.

MAX—A High-Level Programming Language for Morphology.

The "Hit-and-Miss" Transform.

Identifying Region Boundaries.

Conditional Dilation.

Counting Regions.

Grey-Level Morphology.

Opening and Closing.

Smoothing.

Gradient.

Segmentation of Textures.

Size Distribution of Objects.

Color Morphology.

Website Files.

References.

Chapter 4 Grey-Level Segmentation.

Basics of Grey-Level Segmentation.

Using Edge Pixels.

Iterative Selection.

The Method of Grey-Level Histograms.

Using Entropy.

Fuzzy Sets.

Minimum Error Thresholding.

Sample Results From Single Threshold Selection.

The Use of Regional Thresholds.

Chow and Kaneko.

Modeling Illumination Using Edges.

Implementation and Results.

Comparisons.

Relaxation Methods.

Moving Averages.

Cluster-Based Thresholds.

Multiple Thresholds.

Website Files.

References.

Chapter 5 Texture and Color.

Texture and Segmentation.

A Simple Analysis of Texture in Grey-Level Images.

Grey-Level Co-Occurrence.

Maximum Probability.

Moments.

Contrast.

Homogeneity.

Entropy.

Results from the GLCM Descriptors.

Speeding Up the Texture Operators.

Edges and Texture.

Energy and Texture.

Surfaces and Texture.

Vector Dispersion.

Surface Curvature.

Fractal Dimension.

Color Segmentation.

Color Textures.

Website Files.

References.

Chapter 6 Thinning.

What Is a Skeleton?

The Medial Axis Transform.

Iterative Morphological Methods.

The Use of Contours.

Choi/Lam/Siu Algorithm.

Treating the Object as a Polygon.

Triangulation Methods.

Force-Based Thinning.

Definitions.

Use of a Force Field.

Subpixel Skeletons.

Source Code for Zhang-Suen/Stentiford/Holt CombinedAlgorithm.

Website Files.

References.

Chapter 7 Image Restoration.

Image Degradations—The RealWorld.

The Frequency Domain.

The Fourier Transform.

The Fast Fourier Transform.

The Inverse Fourier Transform.

Two-Dimensional Fourier Transforms.

Fourier Transforms in OpenCV.

Creating Artificial Blur.

The Inverse Filter.

TheWiener Filter.

Structured Noise.

Motion Blur—A Special Case.

The Homomorphic Filter—Illumination.

Frequency Filters in General.

Isolating Illumination Effects.

Website Files.

References.

Chapter 8 Classification.

Objects, Patterns, and Statistics.

Features and Regions.

Training and Testing.

Variation: In-Class and Out-Class.

Minimum Distance Classifiers.

Distance Metrics.

Distances Between Features.

Cross Validation.

Support Vector Machines.

Multiple Classifiers—Ensembles.

Merging Multiple Methods.

Merging Type 1 Responses.

Evaluation.

Converting Between Response Types.

Merging Type 2 Responses.

Merging Type 3 Responses.

Bagging and Boosting.

Bagging.

Boosting.

Website Files.

References.

Chapter 9 Symbol Recognition.

The Problem.

OCR on Simple Perfect Images.

OCR on Scanned Images—Segmentation.

Noise.

Isolating Individual Glyphs.

Matching Templates.

Statistical Recognition.

OCR on Fax Images—Printed Characters.

Orientation—Skew Detection.

The Use of Edges.

Handprinted Characters.

Properties of the Character Outline.

Convex Deficiencies.

Vector Templates.

Neural Nets.

A Simple Neural Net.

A Backpropagation Net for Digit Recognition.

The Use of Multiple Classifiers.

Merging Multiple Methods.

Results From the Multiple Classifier.

Printed Music Recognition—A Study.

Staff Lines.

Segmentation.

Music Symbol Recognition.

Source Code for Neural Net Recognition System.

Website Files.

References.

Chapter 10 Content-Based Search — Finding Images by Example.

Searching Images.

Maintaining Collections of Images.

Features for Query by Example.

Color Image Features.

Mean Color.

Color Quad Tree.

Hue and Intensity Histograms.

Comparing Histograms.

Requantization.

Results from Simple Color Features.

Other Color-Based Methods.

Grey-Level Image Features.

Grey Histograms.

Grey Sigma—Moments.

Edge Density—Boundaries Between Objects.

Edge Direction.

Boolean Edge Density.

Spatial Considerations.

Overall Regions.

Rectangular Regions.

Angular Regions.

Circular Regions.

Hybrid Regions.

Test of Spatial Sampling.

Additional Considerations.

Texture.

Objects, Contours, Boundaries.

Data Sets.

Website Files.

References.

Systems.

Chapter 11 High-Performance Computing for Vision and ImageProcessing.

Paradigms for Multiple-Processor Computation.

Shared Memory.

Message Passing.

Execution Timing.

Using clock().

Using QueryPerformanceCounter.

The Message-Passing Interface System.

Installing MPI.

Using MPI.

Inter-Process Communication.

Running MPI Programs.

Real Image Computations.

Using a Computer Network—Cluster Computing.

A Shared Memory System—Using the PC Graphics Processor.

GLSL.

OpenGL Fundamentals.

Practical Textures in OpenGL.

Shader Programming Basics.

Vertex and Fragment Shaders.

Required GLSL Initializations.

Reading and Converting the Image.

Passing Parameters to Shader Programs.

Putting It All Together.

Speedup Using the GPU.

Developing and Testing Shader Code.

Finding the Needed Software.

Website Files.

References.

Index.


已确认勘误

次印刷

页码 勘误内容 提交人 修订印次

Algorithms For Image Processing And Computer Vision 2E 9780470643853
    • 名称
    • 类型
    • 大小

    光盘服务联系方式: 020-38250260    客服QQ:4006604884

    意见反馈

    14:15

    关闭

    云图客服:

    尊敬的用户,您好!您有任何提议或者建议都可以在此提出来,我们会谦虚地接受任何意见。

    或者您是想咨询:

    用户发送的提问,这种方式就需要有位在线客服来回答用户的问题,这种 就属于对话式的,问题是这种提问是否需要用户登录才能提问

    Video Player
    ×
    Audio Player
    ×
    pdf Player
    ×
    Current View

    看过该图书的还喜欢

    some pictures

    解忧杂货店

    东野圭吾 (作者), 李盈春 (译者)

    loading icon