March 2019
Intermediate to advanced
532 pages
13h 2m
English
In this chapter, we looked at the key concepts related to images. Images constitute rich information that's necessary to build your computer vision projects. OpenCV uses the BGR color format instead of RGB, but some Python packages (for example, Matplotlib) use the latter format. Therefore, we have covered how to convert the image from one color format into the other.
Additionally, we have summarized the main functions and options to work with images:
Finally, we included two notebooks, which let you play with ...