1

Using openbr such as

br -algorithm FaceRecognition -compare pictures.gal photo csv

I can get consistent results as long as the persons face in the photo is not rotated. I can't seem to get openbr to recognize a face that is rotated 90 degrees. Does openbr have some way of compensating for rotated photos? I considered rotating the photo myself with imagemagick but I don't think it would be possible to know which direction to rotate.

Alejandro Huerta
  • 1,135
  • 2
  • 17
  • 35

1 Answers1

1

If the EXIF information is still present in your image, you could maybe let ImageMagick autorotate the image upright for you as follows:

convert image.jpg -auto-orient result.jpg
Mark Setchell
  • 191,897
  • 31
  • 273
  • 432