vickyFox / Region-wise-Inpainting

Region-wise GAN, image inpainting
MIT License
54 stars 17 forks source link

Coding error #18

Open RyanHangZhou opened 3 years ago

RyanHangZhou commented 3 years ago

Hi, in test.py,

test_mask = cv2.resize(cv2.imread(file_mask),(args.height, args.width)) should be changed to test_mask = cv2.resize(cv2.imread(file_mask),(args.width, args.height))

as well as for

test_image = cv2.resize(test_image, (args.width, args.height))