-
Notifications
You must be signed in to change notification settings - Fork 6
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add custom kernel support and much more (#28)
* Remove all MemeKernels * Add CustomKernel * Implement CustomComplexKernel * Remove ZimgComplexKernel * Remove fmtconv and reimplement some scalers * Add ewa placebo scalers * Add utils * Add _modify_kernel_func from kwargs options Added blur modify * Add AdobeBicubicSharper, AdobeBicubicSmoother * Merge files * Fix Spline * Make all kernel/kernel_radius cached * Add SampleGridModel * Fix formatting * Update spline.py
- Loading branch information
1 parent
44cc41a
commit d3a474c
Showing
16 changed files
with
626 additions
and
831 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
from . import exceptions, kernels, util # noqa: F401, F403 | ||
from .exceptions import * # noqa: F401, F403 | ||
from .kernels import * # noqa: F401, F403 | ||
from .types import * # noqa: F401, F403 | ||
from .util import * # noqa: F401, F403 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,10 +1,7 @@ | ||
from .abstract import * # noqa: F401, F403 | ||
from .bicubic import * # noqa: F401, F403 | ||
from .complex import * # noqa: F401, F403 | ||
from .fmtconv import * # noqa: F401, F403 | ||
from .impulse import * # noqa: F401, F403 | ||
from .custom import * # noqa: F401, F403 | ||
from .placebo import * # noqa: F401, F403 | ||
from .resize import * # noqa: F401, F403 | ||
from .spline import * # noqa: F401, F403 | ||
from .various import * # noqa: F401, F403 | ||
from .zimg import * # noqa: F401, F403 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Oops, something went wrong.