Running face recognition

The last topic I would like to cover in the chapter is trying to match different images of the same person, to see whether we can build a face recognition model based on FREAK.

I have taken two images of a young woman and cropped the area around her face, assuming this would be the output from a camera. This is the image:

Let's proceed to the Julia code and run the images there, using this code:

using Images, ImageFeatures, ImageDraw, ImageViewimg1 = Gray.(load("sample-images/beautiful-1274051_640_100_1.jpg"))img2 = Gray.(load("sample-images/beautiful-1274056_640_100_2.jpg"))

Next, we find the keypoints and match them ...

Get Hands-On Computer Vision with Julia now with the O’Reilly learning platform.

O’Reilly members experience books, live events, courses curated by job role, and more from O’Reilly and nearly 200 top publishers.