Obtenez du texte de l'image Python

img = cv2.imread('image.png')

text = pytesseract.image_to_string(img)
print(text)
JulesG10