Math.com Store
 Location:  Home » Math Books » Practical Algorithms for Image Analysis with CD-ROM  

Practical Algorithms for Image Analysis with CD-ROM

Practical Algorithms for Image Analysis with CD-ROMAuthors: Lawrence O'Gorman, Michael J. Sammon, Michael Seul
Publisher: Cambridge University Press

List Price: $65.00
Buy New: $52.00
as of 11/23/2009 21:21 CST details
You Save: $13.00 (20%)



New (13) Used (11) from $52.00

Seller: Amazon.com
Rating: 5.0 out of 5 stars 12 reviews
Sales Rank: 80424

Media: Hardcover
Edition: 2
Pages: 360
Number Of Items: 1
Shipping Weight (lbs): 1.7
Dimensions (in): 10.2 x 7.1 x 1

ISBN: 052188411X
Dewey Decimal Number: 621.367
EAN: 9780521884112
ASIN: 052188411X

Publication Date: January 21, 2008
Shipping: Eligible for FREE Super Saver Shipping
Availability: Usually ships in 24 hours

Also Available In:

  • Hardcover - Practical Algorithms for Image Analysis: Descriptions, Examples, and Code

Similar Items:


Editorial Reviews:

Product Description
In classic "cookbook style," this book offers guided access for researchers and practitioners to techniques for the digital manipulation and analysis of images, ranging from the simplest steps to advanced functions. Drawing on their long experience as users and developers of image analysis algorithms and software, the authors present a description and implementation of the most suitable procedures in easy-to-use form. Each self-contained section treats a single operation, describing typical situations requiring that operation and discussing the algorithm and implementation. Sections start with a "before" and "after" pictorial example and a ready-reference listing typical applications, keywords, and related procedures. This new edition has additional sections on Gabor filtering and on threshholding by connectivity, plus an expanded program listing and suggested projects for classroom use. And now the accompanying CD-ROM contains C programs not only as source code for carrying out the book's procedures but also as executables with a graphical user interface for Windows and Linux.

Book Description
In classic "cookbook style," this book offers guided access to a collection of algorithms for the digital manipulation and analysis of images, from the simplest steps to advanced functions. In this new edition, the accompanying CD-ROM contains C programs for carrying out the book's procedures not only as source code but also as executables for Windows and Linux.


Customer Reviews:
Showing reviews 1-5 of 12



5 out of 5 stars Excellent book   May 28, 2008
Z. Liu (Ottawa, ON Canada)
2 out of 2 found this review helpful


As described on the cover page, this book is cookbook style so I went through the programs on the CD before reading the chapters. I like this book for two reasons.

First, the book is easy to read. A bunch of equations may not always be helpful to understand a problem. What confuses readers most is how an implementation/program corresponds to those equation(s). This book explains the image processing techniques in a plain language and gives you an hand-on experience with those techniques.

Second, to practice image processing, clicking a button on windows or just calling a built-in function, e.g. process(image), will not be enough. When you go to the directory of programs on the CD, you may find out every details. Each program is relatively independent to each other. You will not be stuck by a function call, which you never know or find. Each program is well commented and can be easily modified and incorporated into your program.

This book is good for those who are new to image processing, because it helps you understand what image processing does. It is also good for an experience practicer, because you can find well-organized stuff to build your own applications. It is a must-have book for your shelf of image processing.



5 out of 5 stars plug and play   May 19, 2008
Arjan Kuijper (Linz, Austria)
3 out of 3 found this review helpful

Searching for an easy plug & play solution for simple imaging tasks?
No time for programming & debugging things yourself?
No interest in crawling through literature to figure what & how you should program "the methods that solves all your problems"?

Here's a book that deals with most of the elementary - and most used - approaches in image enhancement and analysis. The CD offers a collection of ready-to-play-with programs, both in C source as in executables.

I appreciated the book set-up: each section describes one single task, describes the problem, gives an example, discusses a solution given in literature, and presents the input / output / options for the C code.
- If you want to know more: get the recommended references.
- If you want to modify the program: why not? (well, perhaps because the code is good enough!)
- If you don't care about the scientific background and/or programming: just plug & play!





5 out of 5 stars Excellent new reference for document recognition   May 15, 2008
Instructor (Amherst, NY)
1 out of 1 found this review helpful

I have found this book to be extremely useful as a reference for my class on document image analysis. The book discusses (with software which is a bonus!) a whole bunch of image processing techniques that are very useful.

Students can now find in one place- a reference for techniques such as gabor wavelet analysis, convex hulls, moments, fourier descriptors, thinning, hough transform, and chain coding. This allows me as an instructor of an advanced document recognition course to let the students self-study these image processing techniques while I can focus on the recognition topics.

The authors have done a great job of picking examples from a wide range of applications such as outdoor scenes, fingerprints, and documents. The book is "easy to read" and requires just basics of linear algebra to follow.



5 out of 5 stars More of a toolbox than a textbook   April 6, 2007
calvinnme (Fredericksburg, Va)
3 out of 3 found this review helpful

I already knew image processing when I bought this book, so I am not sure how it would appear to the novice seeking a textbook on the subject of image processing and analysis, but I imagine it could be somewhat confusing. I always recommend Gonzales and Wood's "Digital Image Processing" for those seeking a clear read on image processing and analysis from the ground up. Where Seul's book comes in is with clear descriptions and working code for many basic - and some not so basic - image processing and image analysis algorithms. The book is also very good at explaining the applications of the various transforms. One of the little things that the author of this book does that authors of other books similar to it don't bother to do is to realize that when you are working in image processing you likely have an image as an input and you want an image as an output. Thus the author has built his code libraries so that they work that way. You are not left with arrays of pixels that you have to figure out how to store and manage. In the end you have a nice functional toolbox of working image processing and analysis subroutines that you can chain together and make just about any type of image transform tool you could think of. I'm mainly interested in image effects, and I know this book has been useful to me. The accompanying CD-ROM contains all of the C source code for the algorithms so that you can port them to another language or tinker with them if you so desire. Highly recommended.


4 out of 5 stars Good handbook for practitioners   January 30, 2007
Nikolay Baklanov (Sugar Land, TX USA)
3 out of 3 found this review helpful

The title of this book corresponds to its content, the tutorial gives an excellent overview of basic key points to those readers who are unfamiliar with the subject (as I was). The book can not be used for rigorous study of even simple things but rather kicks you with essentials that are easy to understand with high-school background. This book, written for non-specialists in "image field", gives them techniques for their practical needs and concentrates exactly on image analysis, not on image processing. If you have no time to go through more complex (and deeper) books, take this one to discover basic principles in short form with no attempt to explain the fundamentals. The authors just put you into the facts, so that is why I would characterize the "Practical Algorithms" book as being "handbook". The good point is that the areas of applicability of these facts are explained, the drawback: you have to go to other books to get more details on image processing roots, e. g., to R. Gonzalez and R. Woods' "Digital Image Processing". I bought both, and use them as good annex to each other. The "Practical Algorithms" has lack of some significant areas, like snake algorithm and image binarization (thresholding) techniques but e.g., the cellular processing is quite well highlighted.
Surprisingly, the CD that comes along with this book gave me almost 80% examples that I was able to recompile instantly, and only several examples have failed, mainly due to image file format issues. The source code is not both elegant and bugless, but it is very transparent and portable and can easily fit, e.g., a 16-bit microcontroller.
Overall, this is good book for fast start. You can get real output and pick up ideas on practical side of image analysis. Just remember, the most book examples came from the medicine world, so they are quite specific and may not be implemented directly in your particular application.


Showing reviews 1-5 of 12





Disclaimer

Return to Math.com
Sponsored Links
Math Jobs


Quick Links
Return to Math.com
Math Tutoring
Top Selling Electronics
Textbooks
Math Jobs
Privacy
Categories
Calculators
Math Books
Math DVD
Math Games
Math Toys
Math Software
Game Systems
Math Apparel
Related Categories
• Graphics & Visualization
Computer Science
New & Used Textbooks
Custom Stores
Specialty Stores
• General AAS
Computer Science
New & Used Textbooks
Custom Stores
Specialty Stores
• General AAS
New & Used Textbooks
Custom Stores
Specialty Stores
Books
• Information Systems
Software Engineering
Computer Science
Computers & Internet
Subjects
• General
Graphic Design
Computers & Internet
Subjects
Books
• General
Data in the Enterprise
Networking
Computers & Internet
Subjects
• General
Networking
Computers & Internet
Subjects
Books
• General
Algorithms
Programming
Computers & Internet
Subjects
• General
Graphics & Multimedia
Programming
Computers & Internet
Subjects
• General
Software
Computers & Internet
Subjects
Books
• Web Graphics
Web Design
Web Development
Computers & Internet
Subjects
• General
Computers & Internet
Subjects
Books
• Imaging Systems
Computer Technology
Engineering
Professional & Technical
Subjects
• Hardcover
Binding (binding)
Refinements
Books
• Printed Books
Format (feature_browse-bin)
Refinements
Books