Book Image

Image Processing with ImageJ - Second Edition

Book Image

Image Processing with ImageJ - Second Edition

Overview of this book

Advances in image processing have been vital for the scientific and technological communities, making it possible to analyze images in greater detail than ever before. But as images become larger and more complex, advanced processing techniques are required. ImageJ is built for the modern challenges of image processing – it’s one of the key tools in its development, letting you automate basic tasks so you can focus on sophisticated, in depth analysis. This book demonstrates how to put ImageJ into practice. It outlines its key features and demonstrates how to create your own image processing applications using macros and ImageJ plugins. Once you’ve got to grips with the basics of ImageJ, you’ll then discover how to build a number of different image processing solutions. From simple tasks to advanced and automated image processing, you’ll gain confidence with this innovative and powerful tool – however and whatever you are using it for.
Table of Contents (17 chapters)
Image Processing with ImageJ Second Edition
Credits
About the Authors
About the Reviewer
www.PacktPub.com
Preface
2
Basic Image Processing with ImageJ
Index

Additional tools


Many of the examples described in this book can be designed and built using the built-in editors of ImageJ and Fiji, but if you want to develop more advanced plugins, setting up an IDE would make you work faster. As a learning tool, an IDE might not be the best option. The learning curve of the IDE itself can be steep, and also, it can make you lazy. IDEs can be quite clever and analyze your code to provide automatic importing of classes, implementing the required methods, and variable checking and casting. These tools are handy, but it is important to understand what is happening when the IDE suggests these options. Of course, the spellchecking and completion of variable names makes sure that you will make fewer typos, but you should never blindly rely on it. The analysis of code can be quite sophisticated, but it cannot predict what the developer has in mind. This can sometimes result in very odd behavior or errors that may be hard to debug.

To work with an IDE such as...