Image Stitching
# 객체 생성 stitcher = cv2.Stitcher_create() # 이미지 스티칭 status, dst = stitcher.stitch(imgs) # imgs 는 opencv로 읽은 이미지들 list 입력한 여러가지 이미지를 연산을 적게 하기 위해 resize후 특징점을 검출하고 특징점 matching후 상관관계 이용해 영상 결합 ---- jupyter notebook 실습코드 import cv2 import os import sys import matplotlib.pyplot as plt %matplotlib inline # load images in directory stitcher = cv2.Stitcher_create() file_list = os.listdir('D:/jupyter_di..
2021.01.31