From 098f882331f96247510356f174c837264c674ae9 Mon Sep 17 00:00:00 2001 From: jst Date: Mon, 8 Jul 2013 20:55:20 +0200 Subject: [PATCH] Fix a typo. --- README.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/README.md b/README.md index 2dc9ce1..e828d00 100644 --- a/README.md +++ b/README.md @@ -38,7 +38,7 @@ The provided interpolation functions are (from fast to slow execution time) - `MitchellNetravali`: [Mitchell-Netravali interpolation](http://dl.acm.org/citation.cfm?id=378514) - `Lanczos2Lut`: Lanczos resampling](http://en.wikipedia.org/wiki/Lanczos_resampling) with a=2 using a look-up table for fast computation - `Lanczos2`: [Lanczos resampling](http://en.wikipedia.org/wiki/Lanczos_resampling) with a=2 -- `Lanczos3`: [Lanczos resampling](http://en.wikipedia.org/wiki/Lanczos_resampling) with a=3 using a look-up table for fast computation +- `Lanczos3Lut`: [Lanczos resampling](http://en.wikipedia.org/wiki/Lanczos_resampling) with a=3 using a look-up table for fast computation - `Lanczos3`: [Lanczos resampling](http://en.wikipedia.org/wiki/Lanczos_resampling) with a=3 Which of these methods gives the best results depends on your use case.