Skip to content

Commit

Permalink
Add a bunch of Lanczos taps
Browse files Browse the repository at this point in the history
  • Loading branch information
LightArrowsEXE committed Oct 6, 2024
1 parent 3528146 commit 1099965
Showing 1 changed file with 8 additions and 1 deletion.
9 changes: 8 additions & 1 deletion getfscaler/__main__.py
Original file line number Diff line number Diff line change
Expand Up @@ -201,6 +201,7 @@ def get_kernels() -> list[KernelT]:
Bilinear,

# Lanczos-based
Lanczos(taps=2),
Lanczos(taps=3),
Lanczos(taps=4),

Expand All @@ -225,8 +226,14 @@ def get_kernels() -> list[KernelT]:
RobidouxSharp,

# Lanczos-based
Lanczos(taps=2),
Lanczos(taps=5),
Lanczos(taps=6),
Lanczos(taps=7),
Lanczos(taps=8),
Lanczos(taps=9),
Lanczos(taps=10),
Lanczos(taps=11),
Lanczos(taps=12),

# Spline-based
Spline16,
Expand Down

0 comments on commit 1099965

Please sign in to comment.