diff options
| author | Mattias Andrée <maandree@operamail.com> | 2014-04-06 15:51:36 +0200 | 
|---|---|---|
| committer | Mattias Andrée <maandree@operamail.com> | 2014-04-06 15:51:36 +0200 | 
| commit | 66d5c682097b071fbad08084033ca5a335a1e8b9 (patch) | |
| tree | ade71c26e84c306ebb89873becb7b6e52ba823b9 /src | |
| parent | m (diff) | |
| download | blueshift-66d5c682097b071fbad08084033ca5a335a1e8b9.tar.gz blueshift-66d5c682097b071fbad08084033ca5a335a1e8b9.tar.bz2 blueshift-66d5c682097b071fbad08084033ca5a335a1e8b9.tar.xz | |
remove unnecessary halo elimination
Signed-off-by: Mattias Andrée <maandree@operamail.com>
Diffstat (limited to '')
| -rw-r--r-- | src/interpolation.py | 2 | 
1 files changed, 0 insertions, 2 deletions
| diff --git a/src/interpolation.py b/src/interpolation.py index 9fd98f1..e43592f 100644 --- a/src/interpolation.py +++ b/src/interpolation.py @@ -182,8 +182,6 @@ def monotonicly_cubicly_interpolate_ramp(r, g, b, tension = 0):                  mj, mk = c_ * ms[j], c_ * ms[k]                  # Interpolation                  large[i] = pj + h10(w) * mj + h01(w) * (pk - pj) + h11(w) * mk -    ## Check local monotonicity -    eliminate_halos(r, g, b, R, G, B)      return (R, G, B) | 
