Could not load the Qt platform plugin xcb
Could not load the Qt platform plugin ‘xcb’ 오류 발생 python version의 opencv를 사용하기 위해 다음과 같이 패키지를 설치하였다. pip install opencv-python pip install opencv-contrib-python 그런데 다음과 같은 에러가 발생했다. ‘Avalable platform plugins are: xcb, egifs, glfs, linuxfb, minimal, minimalegl, offscreen, vnc, wayland-egl, wayland, wayland-xcomposite-egl, wayland-xcomposite-glx, webgl.’ plugin ‘xcb’오류 해결 방법 해당 오류에서는 opencv-pytho..
2023. 2. 10.
[OpenCV] OpenCV circle, rectangle, text 그리기와 PIL 한글 text
1. circle, rectangle, text 영상처리를 하다 보면 image에 여러 그림을 그리거나 point를 표시하거나 할 경우가 많다. 타원이나 line 등 많은 그리기 방법이 있지만 주로 rectangle을 그리거나 circle을 그리거나 text를 쓸 때가 많았다. 기본적으로 opencv를 이용한 각 그리기 함수의 parameter들은 밑에와 같다. circle cv2.circle(image, center, raddian, color, thickness) rectangle cv2.rectangle(image, start_point, end_point,color, thickness) text cv2.putText(image, text, location_point, font, font_scale..
2021. 11. 17.