Project- Find the Celebrity who Looks like You using Computer Vision

7 / 8

Celebrity Look-alike with Computer Vision - Load the Image

Now we will load the image we uploaded from the local computer, and the folder containing the celebrity images using the load_images() function we created earlier.

INSTRUCTIONS
  1. First, we load the celebrity images using the load_images() function:

    known_encodings, known_images = << your code goes here >>("/cxldata/projects/lookalikeceleb/images")
    
  2. Now, we load the image we uploaded from the local computer:

    original_image = "../lookalikeceleb/myimage.jpg"
    Image(filename=original_image)
    
See Answer

No hints are availble for this assesment


Note - Having trouble with the assessment engine? Follow the steps listed here

Loading comments...