에러 : ValueError: Input images must have the same dimensions
해결 :
shape로 resize 시 3개의 인자를 받아야 하는데 H, W 두 개만 받아 발생
(H, W) --> (H, W, d)
(H, W, d) = imageA.shape
imageB = cv2.resize(imageB, (H, W))
'에러 > python' 카테고리의 다른 글
[Jupyter Notebook] OSError: [Errno 99] Cannot assign requested address 에러 (1) | 2021.01.08 |
---|---|
[Python] urllib has no attribute quote 에러 (0) | 2021.01.08 |
TypeError: slice indices must be integers or None or have an __index__ method 에러 (0) | 2020.11.14 |
cv2.findContours 에러 (0) | 2020.11.05 |
[conda] command not found error your shell has not been properly configured to use conda activate 에러 (0) | 2020.10.04 |
댓글