Skip to content

Instantly share code, notes, and snippets.

View Dnyarri's full-sized avatar

Ilyich the Toad Dnyarri

View GitHub Profile
@Dnyarri
Dnyarri / bilinear.py
Last active October 16, 2025 18:33
Bilinear image interpolation
#!/usr/bin/env python3
"""Bilinear image rescaling.
General purpose, slightly optimized linear and bilinear rescaling functions.
Different from Photoshop.
Unlike Photoshop, scaling is reversible (as much as possible).
Like Photoshop, result is centered.
@Dnyarri
Dnyarri / barycentric.py
Last active October 16, 2025 18:31
Barycentric image interpolation
#!/usr/bin/env python3
"""Barycentric image interpolation.
General purpose, not optimized, but src reading @lru_cache(maxsize=32)
compensate for this, reducing execution time ca. 30%.
@lru_cache(maxsize=None) gives ca. 40% time reduction but raise concerns
regarding cache growing on large images.