Получение TypeError: аргумент int () должен быть строкой, байтовоподобным объектом или числом, а не «кортежем» с использованием pytesseract в flask
def predict():
if request.method == 'POST':
imagefile = request.files['img'].read()
image = Image.open(io.BytesIO(imagefile))
#image.show()
print(type(image))
text = (pytesseract.image_to_string(image,'eng+kan'))
#rint(imagefile.read())
#print(type(imagefile))
print(text)
return render_template('predict.html')