Chapter 11: Real-Life Applications of Computer Vision
In the previous chapter, we studied various advanced concepts in computer vision such as morphological operations and contours.
This chapter is the culmination of all the computer vision concepts we've learned and demonstrated in the earlier chapters. In this chapter, we will use the computer vision operation we learned about earlier in detail to implement a few real-life projects. We will also learn about a few new concepts such as background subtraction and the computation of optical flow and then demonstrate them for small applications. This chapter contains a lot of hands-on programming examples, as well as detailed explanations of the code and new functionality.
In this chapter, we will learn and demonstrate the code for the following topics:
- Implementing the Max RGB filter
- Implementing background subtraction
- Computing the optical flow
- Detecting and tracking motion
- Detecting barcodes in images...