Book Image

Hands-On Computer Vision with Julia

By : Dmitrijs Cudihins
Book Image

Hands-On Computer Vision with Julia

By: Dmitrijs Cudihins

Overview of this book

Hands-On Computer Vision with Julia is a thorough guide for developers who want to get started with building computer vision applications using Julia. Julia is well suited to image processing because it’s easy to use and lets you write easy-to-compile and efficient machine code. . This book begins by introducing you to Julia's image processing libraries such as Images.jl and ImageCore.jl. You’ll get to grips with analyzing and transforming images using JuliaImages; some of the techniques discussed include enhancing and adjusting images. As you make your way through the chapters, you’ll learn how to classify images, cluster them, and apply neural networks to solve computer vision problems. In the concluding chapters, you will explore OpenCV applications to perform real-time computer vision analysis, for example, face detection and object tracking. You will also understand Julia's interaction with Tesseract to perform optical character recognition and build an application that brings together all the techniques we introduced previously to consolidate the concepts learned. By end of the book, you will have understood how to utilize various Julia packages and a few open source libraries such as Tesseract and OpenCV to solve computer vision problems with ease.
Table of Contents (11 chapters)
9
Assessments

Understanding features and descriptors

By the end of this chapter, you will understand what features are and learn to apply them in computer vision applications. Look at the following image and think about how you would solve a similar puzzle:

Most probably, you would search for patterns or specific features that are unique to the neighboring elements. Image features work similarly by representing the image in a set of parameters making them readily identified, tracked, and compared.

Let's look at two different images of cats and try finding the areas that match those images:

It seems to me that ears and eyes are common for both cats. Let's see what would one of the algorithms we will learn later in the chapter would do to the following image:

From the preceding result, you can see that the algorithm focused on the cats' ears, and this is represented by white...