BGR not RGB

This commit is contained in:
LDOUBLEV 2021-10-12 18:17:26 +08:00
parent 497ce43261
commit 7fbe65e80f
1 changed files with 0 additions and 1 deletions

View File

@ -141,7 +141,6 @@ if __name__ == "__main__":
img, flag = check_and_read_gif(image_file)
if not flag:
img = cv2.imread(image_file)
img = img[:, :, ::-1]
if img is None:
logger.info("error in loading image:{}".format(image_file))
continue