Shows the specified jittered images one by one
(window, jittered_images)
| 31 | import dlib |
| 32 | |
| 33 | def show_jittered_images(window, jittered_images): |
| 34 | ''' |
| 35 | Shows the specified jittered images one by one |
| 36 | ''' |
| 37 | for img in jittered_images: |
| 38 | window.set_image(img) |
| 39 | dlib.hit_enter_to_continue() |
| 40 | |
| 41 | if len(sys.argv) != 2: |
| 42 | print( |