컴퓨터비전/필터링] 이미지 & 동영상 필터링 프로그램 (with python, PyQT)


컴퓨터비전/필터링] 이미지 & 동영상 필터링 프로그램 (with python, PyQT)

※ 코드 출처는 한빛아카데미의 <컴퓨터 비전과 딥러닝>입니다. 이미지 프로세싱 import cv2 as cv import numpy as np from PyQt5.QtWidgets import * import sys class SpecialEffect(QMainWindow): def __init__(self): super().

__init__() self.setWindowTitle('사진 특수 효과') self.setGeometry(200, 200, 800, 200) pictureButton = QPushButton('사진 읽기', self) embossButton = QPushButton('엠보싱', self) cartoonButton = QPushButton('카툰', self) sketchButton = QPushButton('연필 스케치', self) oilButton = QPushButton('유화', self) saveButton = QPushButton('저장하기', se...


#ComputerVision #PyQT #Python #이미지프로세싱 #컴퓨터비전 #파이썬 #필터링

원문링크 : 컴퓨터비전/필터링] 이미지 & 동영상 필터링 프로그램 (with python, PyQT)