컴퓨터비전/딥러닝] 파노라마 영상 제작하기 (with Python, PyQT)


컴퓨터비전/딥러닝] 파노라마 영상 제작하기 (with Python, PyQT)

※ 코드 출처는 한빛아카데미의 <컴퓨터 비전과 딥러닝>입니다. from PyQt5.QtWidgets import * import cv2 as cv import numpy as np import winsound import sys class Panorama(QMainWindow): def __init__(self): super().__init__() self.setWindowTitle('파노라마 영상') self.setGeometry(200, 200, 700, 200) collectButton = QPushButton('영상 수집', self) self.showButton = QPushButton('영상 보기', self) self.stitchButton = QPushButton('봉합', self) self.saveButton = QPushButton('저장', self) quitButton = QPushButton('나가기', self) self.label = QLabel('환영합...


#Panorama #파노라마영상 #파노라마 #컴퓨터비전 #이미지이어붙이기 #이미지비전 #딥러닝 #Stitch #python #PyQT #파이썬

원문링크 : 컴퓨터비전/딥러닝] 파노라마 영상 제작하기 (with Python, PyQT)