Skip to content

PacktPublishing/Python-Image-Processing-Cookbook

Repository files navigation

Python Image Processing Cookbook

Python Image Processing Cookbook

This is the code repository for Python Image Processing Cookbook, published by Packt.

Over 60 recipes to help you perform complex image processing and computer vision tasks with ease

What is this book about?

Advancements in wireless devices and mobile technology have enabled the acquisition of a tremendous amount of graphics, pictures, and videos. Through cutting edge recipes, this book provides coverage on tools, algorithms, and analysis for image processing. This book provides solutions addressing the challenges and complex tasks of image processing.

This book covers the following exciting features:

  • Implement supervised and unsupervised machine learning algorithms for image processing
  • Use deep neural network models for advanced image processing tasks
  • Perform image classification, object detection, and face recognition
  • Apply image segmentation and registration techniques on medical images to assist doctors
  • Use classical image processing and deep learning methods for image restoration
  • Implement text detection in images using Tesseract, the optical character recognition (OCR) engine
  • Understand image enhancement techniques such as gradient blending

If you feel this book is for you, get your copy today!

https://www.packtpub.com/

Instructions and Navigations

All of the code is organized into folders. For example,

The code will look like the following:

def get_grid_coordinates(points):
  xmin, xmax = np.min(points[:, 0]), np.max(points[:, 0]) + 1
  ymin, ymax = np.min(points[:, 1]), np.max(points[:, 1]) + 1
  return np.asarray([(x, y) for y in range(ymin, ymax)
         for x in range(xmin, xmax)], np.uint32)

Following is what you need for this book: This book is for image processing engineers, computer vision engineers, software developers, machine learning engineers, or anyone who wants to become well-versed with image processing techniques and methods using a recipe-based approach. Although no image processing knowledge is expected, prior Python coding experience is necessary to understand key concepts covered in the book.

With the following software and hardware list you can run all code files present in the book.

Software and Hardware List

Chapter Software required OS required
1 - 9 Python 3.7, Anaconda version 2019.10 (py37_0), GPU (if available) Windows, Mac OS X, and Linux (Any)

We also provide a PDF file that has color images of the screenshots/diagrams used in this book. Click here to download it.

Related products

Get to Know the Authors

Sandipan Dey is a data scientist with a wide range of interests, covering topics such as machine learning, deep learning, image processing, and computer vision. He has worked in numerous data science fields, working with recommender systems, predictive models for the events industry, sensor localization models, sentiment analysis, and device prognostics. He earned his master's degree in computer science from the University of Maryland, Baltimore County, and has published in a few IEEE Data Mining conferences and journals. He has earned certifications from 100+ MOOCs on data science, machine learning, deep learning, image processing, and related courses. He is a regular blogger (sandipanweb) and is a machine learning education enthusiast.

More Image Processing Problems can be found here: https://github.com/sandipan/Solving-Image-Processing-Problems-with-Python-Part1

Suggestions and Feedback

Click here if you have any feedback or suggestions.

Download a free PDF

If you have already purchased a print or Kindle version of this book, you can get a DRM-free PDF version at no cost.
Simply click on the link to claim your free PDF.

https://packt.link/free-ebook/9781789537147

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 4

  •  
  •  
  •  
  •