April 2020
Intermediate to advanced
438 pages
12h 2m
English
You will use SIFT keypoints/descriptors to compute the similarity between two images (using opencv-python). Here are the steps that you will need to follow:
query = cv2.imread("images/query.jpg") matched_images = defaultdict(list) for image_file in glob.glob('images/search/*.jpg'): search_image = cv2.imread(image_file)
The query image is shown here:

Read now
Unlock full access