mirror of
https://github.com/THU-MIG/yolov10.git
synced 2025-05-23 13:34:23 +08:00

Signed-off-by: dependabot[bot] <support@github.com> Co-authored-by: vyskocj <whiskey1939@seznam.cz> Co-authored-by: dependabot[bot] <49699333+dependabot[bot]@users.noreply.github.com> Co-authored-by: triple Mu <gpu@163.com> Co-authored-by: Ayush Chaurasia <ayush.chaurarsia@gmail.com> Co-authored-by: pre-commit-ci[bot] <66853113+pre-commit-ci[bot]@users.noreply.github.com> Co-authored-by: Laughing <61612323+Laughing-q@users.noreply.github.com>
46 lines
1.2 KiB
Python
46 lines
1.2 KiB
Python
# Ultralytics YOLO 🚀, AGPL-3.0 license
|
|
"""
|
|
Monkey patches to update/extend functionality of existing functions
|
|
"""
|
|
|
|
from pathlib import Path
|
|
|
|
import cv2
|
|
import numpy as np
|
|
import torch
|
|
|
|
# OpenCV Multilanguage-friendly functions ------------------------------------------------------------------------------
|
|
_imshow = cv2.imshow # copy to avoid recursion errors
|
|
|
|
|
|
def imread(filename, flags=cv2.IMREAD_COLOR):
|
|
return cv2.imdecode(np.fromfile(filename, np.uint8), flags)
|
|
|
|
|
|
def imwrite(filename, img):
|
|
try:
|
|
cv2.imencode(Path(filename).suffix, img)[1].tofile(filename)
|
|
return True
|
|
except Exception:
|
|
return False
|
|
|
|
|
|
def imshow(path, im):
|
|
_imshow(path.encode('unicode_escape').decode(), im)
|
|
|
|
|
|
# PyTorch functions ----------------------------------------------------------------------------------------------------
|
|
_torch_save = torch.save # copy to avoid recursion errors
|
|
|
|
|
|
def torch_save(*args, **kwargs):
|
|
# Use dill (if exists) to serialize the lambda functions where pickle does not do this
|
|
try:
|
|
import dill as pickle
|
|
except ImportError:
|
|
import pickle
|
|
|
|
if 'pickle_module' not in kwargs:
|
|
kwargs['pickle_module'] = pickle
|
|
return _torch_save(*args, **kwargs)
|