Slide 68
Slide 68 text
68
#===============================================
#ɹಉ͡αΠζʹͳΔΑ͏ʹԼʹۭനΛೖΕͯϦαΠζ
#===============================================
color = (255, 255, 255)
if img_current.shape[0] <= img_past.shape[0]:
bottom = img_past.shape[0] - img_current.shape[0]
img_current = cv2.copyMakeBorder(img_current, 0,bottom, 0, 0,
cv2.BORDER_CONSTANT,
value=color,
)
else:
bottom = img_current.shape[0] - img_past.shape[0]
img_past = cv2.copyMakeBorder(img_past, 0, bottom, 0, 0,
cv2.BORDER_CONSTANT,
value=color,
)
※ίʔυҰ෦ൈਮ