Error while reading japanese character name file. Without japanese characters the file can be read.
import matplotlib.pyplot as plt
import cv2
image_path = r"FAX注文0004.tif"
image = cv2.imread(image_path)
plt.imshow(image)
plt.axis('off')
plt.show()
Note: After renaming file from FAX注文0004.tif to FAX0004.tif the file is easily read.
Error: TypeError: Image data of dtype object cannot be converted to float
you can use cv2.imdecode() to decode the image.this will help you.