44e510ee7d49fe9e9126b2e1ecbd916a18450e84,examples/2d/plot_filters.py,,,#,40

Before Change


    filter_c = np.fft.fftshift(filter_c)
    axs[i // L, i % L].imshow(colorize(filter_c))
    axs[i // L, i % L].axis("off")
    axs[i // L, i % L].set_title("$j = {}$ \n $\\theta={}".format(i // L, i % L))
    i = i+1

After Change


plt.suptitle("The corresponding low-pass filter, also known as scaling function."
"Color saturation and color hue respectively denote complex magnitude and complex phase", fontsize=13)
filter_c = np.abs(filter_c)
plt.imshow(filter_c)
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 4

Instances


Project Name: kymatio/kymatio
Commit Name: 44e510ee7d49fe9e9126b2e1ecbd916a18450e84
Time: 2018-11-25
Author: edouard.oyallon@centralesupelec.fr
File Name: examples/2d/plot_filters.py
Class Name:
Method Name:


Project Name: nipy/dipy
Commit Name: 4edb32906c1cadcd1f8cc8e76181bd83db408e93
Time: 2019-07-21
Author: girard.gabriel@gmail.com
File Name: doc/examples/tracking_introduction_eudx.py
Class Name:
Method Name:


Project Name: scikit-image/scikit-image
Commit Name: 7cd406d1da56282c07d4b44180745e1f35848f1f
Time: 2021-01-15
Author: madphysicist@users.noreply.github.com
File Name: doc/examples/color_exposure/plot_tinting_grayscale_images.py
Class Name:
Method Name: