diff --git a/vskernels/kernels/placebo.py b/vskernels/kernels/placebo.py index d5c9b04..2db3d40 100644 --- a/vskernels/kernels/placebo.py +++ b/vskernels/kernels/placebo.py @@ -11,7 +11,6 @@ __all__ = [ 'Placebo', - 'EwaBicubic', 'EwaJinc', 'EwaLanczos', 'EwaGinseng', @@ -100,20 +99,6 @@ def kernel_radius(self) -> int: # type: ignore return 2 -class EwaBicubic(Placebo): - _kernel = 'ewa_robidoux' - - def __init__(self, b: float = 0.0, c: float = 0.5, radius: int | None = None, **kwargs: Any) -> None: - radius = kwargs.pop('taps', radius) - - if radius is None: - from .bicubic import Bicubic - - radius = Bicubic(b, c).kernel_radius - - super().__init__(radius, b, c, **kwargs) - - class EwaLanczos(Placebo): _kernel = 'ewa_lanczos'