No jpg files found?
Hey there this is Derrick and I have a problem regarding the import of images. Apparently I have installed all necessary packages and when I tried to run sizeToFace it prompts a error saying "no jpg files found" (as the image shown below). Please help. Thank you very much! Derrick
I tried 2 different ways to input the import dir but neither worked out

The second one should be right, but it looks like _getexif() returned None. Sorry, no idea why that would happen. You'll have to debug it to see what's going on.
same problem seams to be because their is no metadata in picture... (example, picture taken from FB) any solutioN?
I've got the same problem for the second picture. Did anyone find a solution?
comment or delete line 68
and replace line 74 - return Image.open(filePath)._getexif()[DateTimeOriginalKey]
on return Image.open(filePath)
in sizeToFace.py
I would take a PR if the change makes sense for everyone.
replace line 74 - return Image.open(filePath)._getexif()[DateTimeOriginalKey] on return Image.open(filePath) in sizeToFace.py After that, replace line 159 - if self._finalImg == None: to if self._finalImg is None: in FaceImage.py Then it is working. Both open errors are cleared. You can close both of them