Browse Source

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

modifyDataloader
Glenn Jocher GitHub 2 years ago
parent
commit
2181ef371e
No known key found for this signature in database GPG Key ID: 4AEE18F83AFDEB23
1 changed files with 2 additions and 2 deletions
  1. +2
    -2
      utils/general.py

+ 2
- 2
utils/general.py View File

@@ -925,8 +925,8 @@ def increment_path(path, exist_ok=False, sep='', mkdir=False):
imshow_ = cv2.imshow # copy to avoid recursion errors


def imread(path):
return cv2.imdecode(np.fromfile(path, np.uint8), cv2.IMREAD_COLOR)
def imread(path, flags=cv2.IMREAD_COLOR):
return cv2.imdecode(np.fromfile(path, np.uint8), flags)


def imwrite(path, im):

Loading…
Cancel
Save