Ошибка при попытке обрезвать изображение…
код:
height = frame.shape[0]
width = frame.shape[1]
number_slices = 3
width_slices = width/number_slices
width_slices = round(width_slices)
start_width = width - (width_slices * number_slices)
start_height = height - height
print(width_slices)
#y,x = 0, 0
crop = frame[start_height:start_height+height, start_width:start_width+width_slices]
cv2.imshow("image", crop)
if cv2.waitKey(0):
cv2.destroyAllWindows()
output :
532
Traceback (most recent call last):
File "04.py", line 28, in <module>
cv2.imshow("image", crop)
cv2.error: OpenCV(4.5.3) C:\Users\runneradmin\AppData\Local\Temp\pip-req-build-q3d_8t8e\opencv\modules\imgproc\src\color.cpp:182: error: (-215:Assertion failed) !_src.empty() in function 'cv::cvtColor'
Не знаю в чём проблема ведь тут нет преобразования цвета, но ошибка связана с этим. Заранее спасибо за любую помощь!