목차 openCV 기초, join, 사진 합치기 쌓기, 색깔 감지하기, bitwise_and, mask 1. 가로 및 세로로 쌓기import cv2import numpy as npimage = cv2.imread("../Resources/Images/image2.jpg")#We will stack the images with itself, first i will use the horizontal stack functionimageHor = np.hstack((image, image, image, image))imageVert = np.vstack((image, image, image))cv2.imshow("Horizontal Stack", imageHor)cv2.imshow("Vertical Stack"..