| 1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253545556575859 |
- # copyright (c) 2024 PaddlePaddle Authors. All Rights Reserve.
- #
- # Licensed under the Apache License, Version 2.0 (the "License");
- # you may not use this file except in compliance with the License.
- # You may obtain a copy of the License at
- #
- # http://www.apache.org/licenses/LICENSE-2.0
- #
- # Unless required by applicable law or agreed to in writing, software
- # distributed under the License is distributed on an "AS IS" BASIS,
- # WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- # See the License for the specific language governing permissions and
- # limitations under the License.
- from abc import ABC, abstractmethod
- from ....utils.subclass_register import AutoRegisterABCMetaClass
- import inspect
- from ....utils.func_register import FuncRegister
- from ...utils.io import ImageReader, ImageWriter
- from .utils.mixin import JsonMixin, ImgMixin, StrMixin
- class BaseComponent(ABC, metaclass=AutoRegisterABCMetaClass):
- """Base Component"""
- __is_base = True
- def __init__(self):
- super().__init__()
- @abstractmethod
- def __call__(self):
- raise NotImplementedError(
- "The component method `__call__` has not been implemented yet.")
- class BaseResult(dict, StrMixin, JsonMixin):
- def __init__(self, data):
- super().__init__(data)
- self._show_funcs = []
- StrMixin.__init__(self)
- JsonMixin.__init__(self)
- def save_all(self, save_path):
- for func in self._show_funcs:
- signature = inspect.signature(func)
- if "save_path" in signature.parameters:
- func(save_path=save_path)
- else:
- func()
- class CVResult(BaseResult, ImgMixin):
- def __init__(self, data):
- super().__init__(data)
- ImgMixin.__init__(self, "pillow")
- self._img_reader = ImageReader(backend="pillow")
- self._img_writer = ImageWriter(backend="pillow")
|