Book Image

OpenCV 3 Computer Vision with Python Cookbook

By : Aleksei Spizhevoi, Aleksandr Rybnikov
Book Image

OpenCV 3 Computer Vision with Python Cookbook

By: Aleksei Spizhevoi, Aleksandr Rybnikov

Overview of this book

OpenCV 3 is a native cross-platform library for computer vision, machine learning, and image processing. OpenCV's convenient high-level APIs hide very powerful internals designed for computational efficiency that can take advantage of multicore and GPU processing. This book will help you tackle increasingly challenging computer vision problems by providing a number of recipes that you can use to improve your applications. In this book, you will learn how to process an image by manipulating pixels and analyze an image using histograms. Then, we'll show you how to apply image filters to enhance image content and exploit the image geometry in order to relay different views of a pictured scene. We’ll explore techniques to achieve camera calibration and perform a multiple-view analysis. Later, you’ll work on reconstructing a 3D scene from images, converting low-level pixel information to high-level concepts for applications such as object detection and recognition. You’ll also discover how to process video from files or cameras and how to detect and track moving objects. Finally, you'll get acquainted with recent approaches in deep learning and neural networks. By the end of the book, you’ll be able to apply your skills in OpenCV to create computer vision applications in various domains.
Table of Contents (11 chapters)

Matrices, Colors, and Filters

In this chapter, we will cover the following recipes:

  • Manipulating matrices-creating, filling, accessing elements, and ROIs
  • Converting between different data types and scaling values
  • Non-image data persistence using NumPy
  • Manipulating image channels
  • Converting images from one color space to another
  • Gamma correction and per-element math
  • Mean/variance image normalization
  • Computing image histograms
  • Equalizing image histograms
  • Removing noise using Gaussian, median, and bilateral filters
  • Computing gradient images using Sobel filters
  • Creating and applying your own filter
  • Processing images with real-valued Gabor filters
  • Going from the spatial to the frequency domain (and back) using discrete Fourier transform
  • Manipulating image frequencies for image filtration
  • Processing images with different thresholds
  • Morphological operators
  • Binary images-image masks...