rank_photos icon indicating copy to clipboard operation
rank_photos copied to clipboard

Matplotlib based photo ranking system using the Elo rating system

Results 2 rank_photos issues
Sort by recently updated
recently updated
newest added

https://github.com/weegreenblobbie/rank_photos/blob/a7458e3e20dd559f4f5f74421702e64864a1e604/rank_photos.py#L344-L346 This is the wrong formula, it should be: ``` E_a = 1.0 / (1.0 + 10.0 ** ((R_b - R_a) / 400.0)) E_b = 1.0 / (1.0 + 10.0...

Readme specifies that the script can handle .jpg images. Error comes up from Matplotlib `ValueError: Only know how to handle extensions: [u'png']; with Pillow installed matplotlib can handle more images`...