映像を4つ同時に1ウィンドウで再生するプログラムを作っているのですが、左上と右下だけしか映像が映らないのですが原因がわかりません、
どうかご教授お願いいたします。
PYTHON
1#-*- coding:utf-8 -*- 2import cv2 3import numpy as np 4import pyautogui as gui 5 6 7filepath = "movie1.mp4" 8filepath2 = "movie2.mp4" 9filepath3 = "movie3.mp4" 10filepath4 = "movie4.mp4" 11 12 13# 動画の読み込み 14cap = cv2.VideoCapture(filepath) 15cap2 = cv2.VideoCapture(filepath2) 16cap3 = cv2.VideoCapture(filepath3) 17cap4 = cv2.VideoCapture(filepath4) 18 19def onMouse(event, x, y, flag, params): 20 if event == cv2.EVENT_MOUSEMOVE: 21 event_description += "" 22 cap = cv2.resize(frame7, windowsize) 23 24 cv2.setMousecallback('frame7',onMouse) 25 26windowsize = (1500,900) 27(width,height) = windowsize 28(h2,w2)=(int(height/2),int(width/2)) 29blank = np.zeros((height, width, 3), np.uint8) 30 31# 動画終了まで繰り返し 32while True: 33 34 # フレームを取得 35 ret, frame1 = cap.read() 36 ret, frame2 = cap2.read() 37 ret, frame3 = cap3.read() 38 ret, frame4 = cap4.read() 39 40 #movie1を左上に表示 41 frame = cv2.resize(frame1,(w2,h2)) 42 total = blank.copy() 43 total[0:frame.shape[0],0:frame.shape[1]]=frame 44 45 #movie4を右下に表示 46 frame = cv2.resize(frame4,(w2,h2)) 47 48 #movie2を右上に表示 49 #frame = cv2.resize(frame2,(w2,h2)) 50 51 #movie3を左下に表示 52 #frame = cv2.resize(frame3,(w2,h2)) 53 54 total[h2:h2+frame.shape[0],w2:w2+frame.shape[1]]=frame 55 56 total = cv2.resize(total, windowsize) 57 58 # フレームを表示 59 cv2.imshow("Total", total) 60 #cv2.imshow("Frame1", frame) 61 62 63 64 # qキーが押されたら途中終了 65 if cv2.waitKey(1) & 0xFF == ord('q'): 66 break 67 68cap.release() 69cap2.release() 70cap3.release() 71cap4.release() 72cv2.destroyAllWindows()
自分で書いたコードなのでしょうか。
#movie2を右上に表示
#frame = cv2.resize(frame2,(w2,h2))
#movie3を左下に表示
#frame = cv2.resize(frame3,(w2,h2))
は何していますか。