align-dlib: Check if image was correctly loaded.
This commit is contained in:
parent
244ac78e90
commit
446436ced1
|
@ -100,8 +100,12 @@ def alignMain(args):
|
|||
|
||||
if not os.path.isfile(imgName):
|
||||
rgb = imgObject.getRGB()
|
||||
if rgb is not None:
|
||||
print(imgName, type(rgb), rgb.shape)
|
||||
outRgb = align.alignImg('affine', args.size, rgb,
|
||||
landmarkIndices=landmarkIndices)
|
||||
else:
|
||||
outRgb = None
|
||||
if args.fallbackLfw and outRgb is None:
|
||||
nFallbacks += 1
|
||||
deepFunneled = "{}/{}.jpg".format(os.path.join(args.fallbackLfw,
|
||||
|
|
Loading…
Reference in New Issue