logo
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Readme
Files and versions

57 lines
1.9 KiB

2 years ago
# encoding=utf-8
from collections import namedtuple
2 years ago
import cv2
import requests
import numpy as np
from towhee._types import Image
2 years ago
from towhee.operator import PyOperator, SharedType
2 years ago
from towhee import register
2 years ago
from towhee.utils import ndarray_utils
from towhee.utils.log import engine_log
2 years ago
2 years ago
@register(
2 years ago
input_schema=[(str, (1,))],
2 years ago
output_schema=[(Image, (-1, -1, 3))]
)
class ImageDecoder(PyOperator):
def __init__(self):
super().__init__()
2 years ago
def _load_from_remote(image_url: str) -> np.ndarray:
try:
r = requests.get(image_url, timeout=(20, 20))
if r.status_code // 100 != 2:
2 years ago
engine_log.error('Download image from %s failed, error msg: %s, request code: %s ' % (image_url,
r.text,
r.status_code))
2 years ago
return None
arr = np.asarray(bytearray(r.content), dtype=np.uint8)
return cv2.imdecode(arr, -1)
except Exception as e:
2 years ago
engine_log.error('Download image from %s failed, error msg: %s' % (image_url, str(e)))
2 years ago
return False
def _load_from_local(image_path: str) -> np.ndarray:
return cv2.imread(image_path)
def __call__(self, image_path: str):
if image_path.startswith('http'):
2 years ago
bgr_cv_image = ImageDecoder._load_from_remote(image_path)
2 years ago
else:
2 years ago
bgr_cv_image = ImageDecoder._load_from_local(image_path)
2 years ago
if bgr_cv_image is None:
err = 'Read image %s failed' % image_path
2 years ago
engine_log.error(err)
2 years ago
raise RuntimeError(err)
2 years ago
rgb_cv_image = cv2.cvtColor(bgr_cv_image, cv2.COLOR_BGR2RGB)
return Image(rgb_cv_image, 'RGB')
2 years ago
@property
def shared_type(self):
return SharedType.Shareable