Skip to content

Commit

Permalink
Remove NearestNeighbour
Browse files Browse the repository at this point in the history
  • Loading branch information
Setsugennoao committed Oct 22, 2023
1 parent 30b0770 commit 18fd91e
Showing 1 changed file with 0 additions and 8 deletions.
8 changes: 0 additions & 8 deletions vskernels/kernels/various.py
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,6 @@
'BlackManMinLobe',
'Sinc',
'Gaussian',
'NearestNeighbour',
'EwaBicubic',
'EwaJinc',
'EwaLanczos',
Expand Down Expand Up @@ -56,13 +55,6 @@ def __init__(self, curve: float = 30, taps: int = 2, **kwargs: Any) -> None:
super().__init__(taps, a1=curve, **kwargs)


class NearestNeighbour(Gaussian):
"""Nearest Neighbour kernel."""

def __init__(self, **kwargs: Any) -> None:
super().__init__(100, **kwargs)


class EwaBicubic(Placebo):
_kernel = 'ewa_robidoux'

Expand Down

0 comments on commit 18fd91e

Please sign in to comment.