img= cv2.imread(file, cv2.CV_LOAD_IMAGE_COLOR)
AttributeError: module 'cv2.cv2' has no attribute 'CV_LOAD_IMAGE_COLOR'
このように変更すると良いかもしれません。
img = cv2.imread(file, cv2.IMREAD_COLOR)
img= cv2.imread(file, cv2.CV_LOAD_IMAGE_COLOR)
AttributeError: module 'cv2.cv2' has no attribute 'CV_LOAD_IMAGE_COLOR'
このように変更すると良いかもしれません。
img = cv2.imread(file, cv2.IMREAD_COLOR)