maple
maple

Reputation: 21

cv2.imshow() not displaying text properly

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:

  1. RGB values in the status bar are squares
  2. icons in tool bar are blank
  3. right-click menu text are squares

See:

blank menu bar

and

right-click menu

Specs:

Anybody could please help?

Edit:

a normal output would be something like this:

Upvotes: 2

Views: 914

Answers (0)

Related Questions