Reputation: 21
I am trying to display an image with cv2 in python:
import cv2
img = cv2.imread('Prova.jpg')
cv2.imshow('image', img)
cv2.waitKey(0)
the image looks good. But all the texts are not showing correctly:
See:
and
Specs:
Anybody could please help?
Edit:
a normal output would be something like this:
Upvotes: 2
Views: 914