Skip to content

Commit effc9d7

Browse files
committed
Add helpful error if image is corrupted
1 parent 04ea59f commit effc9d7

File tree

1 file changed

+5
-1
lines changed

1 file changed

+5
-1
lines changed

prepro.py

+5-1
Original file line numberDiff line numberDiff line change
@@ -183,7 +183,11 @@ def main(params):
183183
for i,img in enumerate(imgs):
184184
# load the image
185185
I = imread(os.path.join(params['images_root'], img['file_path']))
186-
Ir = imresize(I, (256,256))
186+
try:
187+
Ir = imresize(I, (256,256))
188+
except:
189+
print 'failed resizing image %s - see http://git.io/vBIE0' % (img['file_path'],)
190+
raise
187191
# handle grayscale input images
188192
if len(Ir.shape) == 2:
189193
Ir = Ir[:,:,np.newaxis]

0 commit comments

Comments
 (0)