I am building an image processing classifier. This line is giving me an error:
input_img_resize=cv2.resize(input_img,(128,128))
The error:
Well, obviously this line
input_img=cv2.imread(data_path + '/'+ dataset + '/'+ img )
returns an empty array.
You should check whether the image exists first before reading. And it is better not to use string combination to join file paths, use python os.path.join instead.
image_path = os.path.join(data_path, dataset, img)
if os.path.exist():
# Do stuff