April 2020
Intermediate to advanced
438 pages
12h 2m
English
You can implement image-stitching directly with the OpenCV-Python library's Stitcher class methods (without explicitly performing the stitching steps, for example, feature extraction/matching/blending). Just run the following steps:
print(cv2.__version__)# 3.4.2
images = [ cv2.cvtColor(cv2.imread(img), cv2.COLOR_BGR2RGB) for \ img in glob.glob('images/victoria*.png')]print('Number of images to stitch: {}'.format(len(images)))# Number of images to stitch: 7
Read now
Unlock full access