Open Waffleboy opened 4 years ago
That error caused by feeding 4-channel images to the network. You can solve the problem with the following fix.
In helper.py, after line 161 you should add line below:
image = scipy.misc.imresize(scipy.misc.imread(image_file), image_shape)
image = image[:, :, :3] # This line should be added.
startTime = time.clock()
Hello,
I cloned and followed the instructions, and put the saved model as specified.
Tried predicting images, and it crashes. Any ideas?