OpenCV Error: Sizes of input arguments do not match (The operation is neither 'array op array' (wher

1038 단어 opencv
OpenCV Error: Sizes of input arguments do not match (The operation is neither 'array op array' (where arrays have the same size and the same number of channels)
스스로 오류를 시뮬레이션했습니다.
import numpy as np
import cv2
preFrame=np.asanyarray([1,2,3])
frame2=np.asanyarray([1,2])
diff = cv2.subtract(preFrame, frame2)
if not np.any(diff):  #  
    print(True)
이유:
preFrame 및
프레임2는 shage가 달라요.

좋은 웹페이지 즐겨찾기