Browse Source

Fix missing imports

Kentaro Wada 6 years ago
parent
commit
aedd590f09
1 changed files with 2 additions and 0 deletions
  1. 2 0
      labelme/utils/image.py

+ 2 - 0
labelme/utils/image.py

@@ -2,7 +2,9 @@ import base64
 import io
 
 import numpy as np
+import PIL.ExifTags
 import PIL.Image
+import PIL.ImageOps
 
 
 def img_b64_to_arr(img_b64):