현재 이 코드를 실행한 후 일부 이미지를 출력하려고 합니다.
import cv2 as cv
import matplotlib.pyplot as plt
img = cv.imread('Photos/cat.jpg')
cv.imshow('cat', img)
plt.imshow(img)
plt.show()
하지만 대신 Pycharm에서 다음과 같은 오류 메시지가 나타납니다.
qt.qpa.plugin: Could not load the Qt platform plugin "xcb" in "/home/Joel/PycharmProjects/opencv_project/venv/lib/python3.9/site-packages/cv2/qt/plugins" even though it was found.
This application failed to start because no Qt platform plugin could be initialized. Reinstalling the application may fix this problem.
Available platform plugins are: xcb, eglfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, webgl.
"xcb"를 설치하고 싶었지만 아치 저장소에 그러한 패키지가 없었습니다(비록 "libxcb"가 있어서 설치했지만 여전히 이 오류가 발생했습니다).