aa8674c6d0a1ab57be1d61f6fcf850277fe52355,mahotas/convolve.py,,daubechies,#Any#Any#Any#,367

Before Change


    haar : function
        Haar transform (equivalent to D2)
    """
    f = _as_floating_point_array(f)
    if f.ndim != 2:
        raise ValueError("mahotas.convolve.daubechies: Only works for 2D images")
    elif not inline:
        f = f.copy()
    code = _daubechies_codes.index(code)
    _convolve.daubechies(f, code)
    _convolve.daubechies(f.T, code)
    return f

After Change


    haar : function
        Haar transform (equivalent to D2)
    """
    f = _wavelet_array(f, inline, "daubechies")
    code = _daubechies_codes.index(code)
    _convolve.daubechies(f, code)
    _convolve.daubechies(f.T, code)
    return f
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 11

Instances


Project Name: luispedro/mahotas
Commit Name: aa8674c6d0a1ab57be1d61f6fcf850277fe52355
Time: 2012-08-20
Author: luis@luispedro.org
File Name: mahotas/convolve.py
Class Name:
Method Name: daubechies


Project Name: luispedro/mahotas
Commit Name: aa8674c6d0a1ab57be1d61f6fcf850277fe52355
Time: 2012-08-20
Author: luis@luispedro.org
File Name: mahotas/convolve.py
Class Name:
Method Name: ihaar


Project Name: luispedro/mahotas
Commit Name: aa8674c6d0a1ab57be1d61f6fcf850277fe52355
Time: 2012-08-20
Author: luis@luispedro.org
File Name: mahotas/convolve.py
Class Name:
Method Name: haar