訓(xùn)練yolov5的時(shí)候如果啟用了Albumentations庫(kù)可能會(huì)出現(xiàn):
cv2.cvtColor(im_hsv, cv2.COLOR_HSV2BGR, dst=im) # no return needed
TypeError: Expected Ptr<cv::UMat> for argument 'dst'
或者
cv2.cvtColor(im_hsv, cv2.COLOR_HSV2BGR, dst=im) # no return needed
cv2.error: OpenCV(4.6.0) :-1: error: (-5:Bad argument) in function 'cvtColor'
> Overload resolution failed:
> - Layout of the output array dst is incompatible with cv::Mat
> - Expected Ptr<cv::UMat> for argument 'dst'
原因是之前的操作使得im
在內(nèi)存中不連續(xù),在augment_hsv
之前加一行解決:
img = np.ascontiguousarray(img)