April 2020
Intermediate to advanced
438 pages
12h 2m
English
In this recipe, we will use a colored (RGB) image whose color channels are not properly aligned (resulting in an improper visualization of the colored image). You will align the color channels using the ECC algorithm and then render the colored image to improve its visualization. Let's start by importing the required libraries as usual:
import cv2import numpy as npimport matplotlib.pylab as plt
Read now
Unlock full access