Page 68 - PowerPoint Presentation
P. 68

Resize























                    import numpy as np

                    import cv2 as cv

                    img = cv.imread('noidea.jpg',

                    cv.IMREAD_GRAYSCALE)
                    assert img is not None, "file could not be

                    read, check with os.path.exists()"

                    rows,cols = img.shape
                    M = np.float32([[2,0,0],[0,1,0]])

                    dst = cv.warpAffine(img,M,(cols,rows))
   63   64   65   66   67   68   69