Expected behaviour
When using the imshow() function, a window appears, at the top there are various buttons
Actual behaviour
Buttons work, but they do not display icons

Buttons work, but they do not display icons
Steps to reproduce
- Install
pip install opencv-contrib-python==4.5.3.56
- Run this code
import cv2
cap = cv2.VideoCapture(0)
if not cap.isOpened():
print("Cannot open camera")
exit()
while True:
ret, frame = cap.read()
if not ret:
print("Can't receive frame (stream end?). Exiting ...")
break
cv2.imshow('frame', frame)
if cv2.waitKey(1) != -1:
break
cap.release()
cv2.destroyAllWindows()
Issue submission checklist
Expected behaviour
When using the imshow() function, a window appears, at the top there are various buttons
Actual behaviour
Buttons work, but they do not display icons

Buttons work, but they do not display icons
Steps to reproduce
pip install opencv-contrib-python==4.5.3.56Issue submission checklist
opencv-pythonI am not using the latest version due to this error: imshow segfaults in 4.5.4.58 on Ubuntu 21.04 (x86_64, Python 3.9) #572