Update `cv2.imread()` patch with flags argument (#7287)

This commit is contained in:
Glenn Jocher 2022-04-05 11:49:32 +02:00 committed by GitHub
parent 8d0291f3af
commit 2181ef371e
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions

View File

@ -925,8 +925,8 @@ def increment_path(path, exist_ok=False, sep='', mkdir=False):
imshow_ = cv2.imshow # copy to avoid recursion errors imshow_ = cv2.imshow # copy to avoid recursion errors
def imread(path): def imread(path, flags=cv2.IMREAD_COLOR):
return cv2.imdecode(np.fromfile(path, np.uint8), cv2.IMREAD_COLOR) return cv2.imdecode(np.fromfile(path, np.uint8), flags)
def imwrite(path, im): def imwrite(path, im):