Image Processing and Acquisition using Python
eBook - ePub

Image Processing and Acquisition using Python

Ravishankar Chityala, Sridevi Pudipeddi

  1. 421 pagine
  2. English
  3. ePUB (disponibile sull'app)
  4. Disponibile su iOS e Android
eBook - ePub

Image Processing and Acquisition using Python

Ravishankar Chityala, Sridevi Pudipeddi

Dettagli del libro
Anteprima del libro
Indice dei contenuti
Citazioni

Informazioni sul libro

Image Processing and Acquisition using Python provides readers with a sound foundation in both image acquisition and image processing—one of the first books to integrate these topics together. By improving readers' knowledge of image acquisition techniques and corresponding image processing, the book will help them perform experiments more effectively and cost efficiently as well as analyze and measure more accurately. Long recognized as one of the easiest languages for non-programmers to learn, Python is used in a variety of practical examples.

A refresher for more experienced readers, the first part of the book presents an introduction to Python, Python modules, reading and writing images using Python, and an introduction to images. The second part discusses the basics of image processing, including pre/post processing using filters, segmentation, morphological operations, and measurements. The second part describes image acquisition using various modalities, such as x-ray, CT, MRI, light microscopy, and electron microscopy. These modalities encompass most of the common image acquisition methods currently used by researchers in academia and industry.

Features



  • Covers both the physical methods of obtaining images and the analytical processing methods required to understand the science behind the images.


  • Contains many examples, detailed derivations, and working Python examples of the techniques.


  • Offers practical tips on image acquisition and processing.


  • Includes numerous exercises to test the reader's skills in Python programming and image processing, with solutions to selected problems, example programs, and images available on the book's web page.

New to this edition



  • Machine learning has become an indispensable part of image processing and computer vision, so in this new edition two new chapters are included: one on neural networks and the other on convolutional neural networks.


  • A new chapter on affine transform and many new algorithms.


  • Updated Python code aligned to the latest version of modules.

Domande frequenti

Come faccio ad annullare l'abbonamento?
È semplicissimo: basta accedere alla sezione Account nelle Impostazioni e cliccare su "Annulla abbonamento". Dopo la cancellazione, l'abbonamento rimarrà attivo per il periodo rimanente già pagato. Per maggiori informazioni, clicca qui
È possibile scaricare libri? Se sì, come?
Al momento è possibile scaricare tramite l'app tutti i nostri libri ePub mobile-friendly. Anche la maggior parte dei nostri PDF è scaricabile e stiamo lavorando per rendere disponibile quanto prima il download di tutti gli altri file. Per maggiori informazioni, clicca qui
Che differenza c'è tra i piani?
Entrambi i piani ti danno accesso illimitato alla libreria e a tutte le funzionalità di Perlego. Le uniche differenze sono il prezzo e il periodo di abbonamento: con il piano annuale risparmierai circa il 30% rispetto a 12 rate con quello mensile.
Cos'è Perlego?
Perlego è un servizio di abbonamento a testi accademici, che ti permette di accedere a un'intera libreria online a un prezzo inferiore rispetto a quello che pagheresti per acquistare un singolo libro al mese. Con oltre 1 milione di testi suddivisi in più di 1.000 categorie, troverai sicuramente ciò che fa per te! Per maggiori informazioni, clicca qui.
Perlego supporta la sintesi vocale?
Cerca l'icona Sintesi vocale nel prossimo libro che leggerai per verificare se è possibile riprodurre l'audio. Questo strumento permette di leggere il testo a voce alta, evidenziandolo man mano che la lettura procede. Puoi aumentare o diminuire la velocità della sintesi vocale, oppure sospendere la riproduzione. Per maggiori informazioni, clicca qui.
Image Processing and Acquisition using Python è disponibile online in formato PDF/ePub?
Sì, puoi accedere a Image Processing and Acquisition using Python di Ravishankar Chityala, Sridevi Pudipeddi in formato PDF e/o ePub, così come ad altri libri molto apprezzati nelle sezioni relative a Mathematics e Mathematics General. Scopri oltre 1 milione di libri disponibili nel nostro catalogo.

Informazioni

Anno
2020
ISBN
9780429516528
Edizione
2
Argomento
Mathematics
Part I
Introduction to Images and Computing using Python
Chapter 1
Introduction to Python
1.1Introduction
Before we begin discussion on image acquisition and processing using Python, we will provide an overview of the various aspects of Python. This chapter focuses on some of the basic materials covered by many other books [Bea09], [Het10], [Lut06], [Vai09] and also from the book, “Essential Python” ([PC18]), a book from the authors of this book. If you are already familiar with Python and are currently using it, then you can skip this chapter.
We begin with an introduction to Python. We will then discuss the installation of Python with all the modules using the Anaconda distribution. Once the installation has been completed, we can begin exploring the various features of Python. We will quickly review the various data structures such as list, dictionary, and tuples and statements such as for-loop, if-else, iterators and list comprehension.
1.2What Is Python?
Python is a popular high-level programming language. It can handle various programming tasks such as numerical computation, web development, database programming, network programming, parallel processing, etc.
Python is popular for various reasons including:
1.It is free.
2.It is available on all the popular operating systems such as Windows, Mac or Linux.
3.It is an interpreted language. Hence, programmers can test portions of code on the command line before incorporating it into their program. There is no need for compiling or linking.
4.It gives the ability to program faster.
5.It is syntactically simpler than C/C++/Fortran. Hence it is highly readable and easier to debug.
6.It comes with various modules that are standard or can be installed in an existing Python installation. These modules can perform various tasks like reading and writing various files, scientific computation, visualization of data, etc.
7.Programs written in Python can be run on various OS or platforms with little or no change.
8.It is a dynamically typed language. Hence the data type of variables does not have to be declared prior to their use, making it easier for people with less coding experience.
9.It has a dedicated developer and user community and is kept up to date.
Although Python has many advantages that have made it one of the most popular interpreted languages, it has a couple of drawbacks that are discussed below:
1.Since its focus is on the ability to program faster, the speed of execution suffers. A Python program might be 10 times or more slower (say) than an equivalent C program, but it will contain fewer lines of code and can be programmed to handle multiple data types easily. This drawback in the Python code can be overcome by converting the computationally intensive portions of the code to C/C++ or by the appropriate use of data structure and modules.
2.Indentation of the code is not optional. This makes the code readable. However, a code with multiple loops and other constructs will be indented to the right, making it difficult to read the code.
1.3Python Environments
There are several Python environments from which to choose. Some operating systems like Mac, Linux, Unix, etc. have a built-in interpreter. The interpreter may contain all modules but is not turn-key ready for scientific computing. Specialized distributions have been created and sold to the scientific community, pre-built with various Python scientific modules. When using these distributions, the users do not have to individually install scientific modules. If a particular module that is of interest is not available in the distribution, it can be installed. One of the most popular distributions is Anaconda [Ana20b]. The instructions for installing Anaconda distribution can be found at https://www.anaconda.com/distribution/.
1.3.1Python Interpreter
The Python interpreter built into most operating systems can be started by simply typing python in the terminal window. When the interpreter is started, a command prompt ( > > >) appears. Python commands can be entered at the prompt for processing. For example, in Mac, when the built-in Python interpreter is started, an output similar to the one shown below appears:
 (base) mac:ipaup ravi$ python Python 3.7.3 | packaged by conda-forge | (default, Dec 6 2019, 08:36:57) [Clang 9.0.0 (tags/RELEASE_900/final)] :: Anaconda, Inc. on darwin Type "help", "copyright", "credits" or "license" for more information. >>> 
Notice that in the example above, the Python interpreter is version 3.7.3. It is possible that you might have a different version.
1.3.2Anaconda Python Distribution
The Anaconda Python Distribution [Ana20a] provides programmers with close to 100 of the most popular scientific Python modules like scientific computation, linear algebra, symbolic computing, image processing, signal processing, visualization, integration of C/C++ programs to Python etc. It is distributed and maintained by Continuum Analytics. It is available for free for academics and is available for a price to all others. In addition to the various modules built into Anaconda, programmers can install other modules using the conda [Ana20b] package manager, without affecting the main distribution.
To access Python from the command line, start the ‘Anaconda Prompt’ executable and then type python.
1.4Running a Python Program
Using any Python interpreter (built-in or from a distribution), you can run your program using the command at the operating system (OS) command prompt. If the file firstprog.py is a Python file that needs to be executed, then type the following command on the OS command prompt.
 >> python firstprog.py 
The >> is the terminal prompt and >> > represents the Python prompt.
The best approach to running Python programs under any operating systems is to use an Integrated Development Environment like IDLE or Spyder as it provides an ability to edit the file and also run it under the same interface.
1...

Indice dei contenuti

  1. Cover
  2. Half Title
  3. Series Page
  4. Title Page
  5. Copyright Page
  6. Dedication
  7. Contents
  8. Foreword
  9. Preface
  10. Preface to the First Edition
  11. Introduction
  12. Authors
  13. List of Symbols and Abbreviations
  14. Part I: Introduction to Images and Computing using Python
  15. Part II: Image Processing using Python
  16. Part III: Image Acquisition
  17. Appendix A: Image Processing and Acquisition using Python
  18. Appendix B: Image Processing and Acquisition using Python
  19. Appendix C: Introduction to ImageJ
  20. Appendix D: Matlab® and Numpy Functions
  21. Bibliography
  22. Index
Stili delle citazioni per Image Processing and Acquisition using Python

APA 6 Citation

Chityala, R., & Pudipeddi, S. (2020). Image Processing and Acquisition using Python (2nd ed.). CRC Press. Retrieved from https://www.perlego.com/book/1628932/image-processing-and-acquisition-using-python-pdf (Original work published 2020)

Chicago Citation

Chityala, Ravishankar, and Sridevi Pudipeddi. (2020) 2020. Image Processing and Acquisition Using Python. 2nd ed. CRC Press. https://www.perlego.com/book/1628932/image-processing-and-acquisition-using-python-pdf.

Harvard Citation

Chityala, R. and Pudipeddi, S. (2020) Image Processing and Acquisition using Python. 2nd edn. CRC Press. Available at: https://www.perlego.com/book/1628932/image-processing-and-acquisition-using-python-pdf (Accessed: 14 October 2022).

MLA 7 Citation

Chityala, Ravishankar, and Sridevi Pudipeddi. Image Processing and Acquisition Using Python. 2nd ed. CRC Press, 2020. Web. 14 Oct. 2022.