November 2018
Intermediate to advanced
492 pages
12h 19m
English
The Gaussian pyramid can be computed with the following steps:
from skimage.transform import pyramid_reduce def get_gaussian_pyramid(image): ''' input: an RGB image output: the Gaussian Pyramid of the image as a list ''' gaussian_pyramid = [] # add code here # iteratively ...
Read now
Unlock full access