April 2020
Intermediate to advanced
438 pages
12h 2m
English
The following are the steps that you will follow (you will have to implement a few functions) to implement image stitching/mosaicing:
def compute_homography(image1, image2, bff_match=False):
sift = cv2.xfeatures2d.SIFT_create(edgeThreshold=10, sigma=1.5, \ contrastThreshold=0.08) kp1, des1 = sift.detectAndCompute(image1, None) kp2, des2 = sift.detectAndCompute(image2, None)
bf = cv2.BFMatcher() # Brute ...
Read now
Unlock full access