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

Basic development


In this book, we have looked at many different ways of performing image processing and analysis. Automation using macros and plugins were introduced, allowing for infinite possibilities in processing and analysis. The topics in this book have been written for users who would like to start developing their own plugins and macros. Naturally, this book can only provide so much information within its pages, so this section is meant to provide some handles on how to proceed further along this path.

To start with, creating macros and plugins gets easier with repeated practice and learning from previous code (or other people's code). When creating macros, it is a good practice to make small macros that perform only a single step in processing. Then, by combining multiple macros, you can create a very versatile toolbox. Many useful tools in ImageJ, such as the ActionBar plugin, allow you to create a fast way to launch many different macros in succession. When developing in this...