OpenCV (2) 썸네일형 리스트형 3. mss를 이용한 실시간 스크린 샷 설치 pip install mss import sys import cv2 as cv from PyQt5.QtCore import QThread from PyQt5.QtWidgets import QWidget, QApplication, QPushButton, QBoxLayout, QLabel from PyQt5 import QtGui import numpy as np import mss class Image_View(QThread): def __init__(self): super().__init__() def __del__(self): self.wait() def run(self): image_pos = {'left': 0, 'top': 0, 'width': 80, 'height': 80} width = .. 1. [python_Open cv] cvtColor OPEN CV 설치 pip install opencv-python 원본 사진 import cv2 img_color = cv2.imread('rena.jpg') img_gray = cv2.cvtColor(img_color,cv2.COLOR_BGR2GRAY) img_hsv = cv2.cvtColor(img_color, cv2.COLOR_BGR2HSV) img_hlv = cv2.cvtColor(img_color, cv2.COLOR_BGR2HLS) cv2.imshow("result_color", img_color) cv2.imshow("result_gray", img_gray) cv2.imshow("result_hsv", img_hsv) cv2.imshow("result_hlv", img_hlv) cv2.wai.. 이전 1 다음