April 2020
Intermediate to advanced
438 pages
12h 2m
English
There are a number of text conventions used throughout this book.
CodeInText: Indicates code words in text, database table names, folder names, filenames, file extensions, pathnames, dummy URLs, user input, and Twitter handles. Here is an example: "Implement a bilinear_interpolate() function, which interpolates over every image channel."
A block of code is set as follows:
def get_grid_coordinates(points): xmin, xmax = np.min(points[:, 0]), np.max(points[:, 0]) + 1 ymin, ymax = np.min(points[:, 1]), np.max(points[:, 1]) + 1 return np.asarray([(x, y) for y in range(ymin, ymax) for x in range(xmin, xmax)], np.uint32)
Any command-line input or output is written as follows:
$ pip install mtcnn
Bold: Indicates a new term, an important ...
Read now
Unlock full access