27c2dc10bb9f83026db6378c151d8108fc044af8,examples/images_contours_and_fields/contour_image.py,,,#,20

Before Change


plt.subplot(2, 2, 2)

plt.imshow(Z, extent=extent, cmap=cmap, norm=norm)
v = plt.axis()
plt.contour(Z, levels, colors="k", origin="upper", extent=extent)
plt.axis(v)
plt.title("Image, origin "upper"")

After Change



axs[1].imshow(Z, extent=extent, cmap=cmap, norm=norm)
axs[1].contour(Z, levels, colors="k", origin="upper", extent=extent)
axs[1].set_title("Image, origin "upper"")

axs[2].imshow(Z, origin="lower", extent=extent, cmap=cmap, norm=norm)
axs[2].contour(Z, levels, colors="k", origin="lower", extent=extent)
axs[2].set_title("Image, origin "lower"")
Italian Trulli
In pattern: SUPERPATTERN

Frequency: 3

Non-data size: 3

Instances


Project Name: matplotlib/matplotlib
Commit Name: 27c2dc10bb9f83026db6378c151d8108fc044af8
Time: 2018-06-27
Author: jklymak@gmail.com
File Name: examples/images_contours_and_fields/contour_image.py
Class Name:
Method Name:


Project Name: matplotlib/matplotlib
Commit Name: ec5e8863a6352da673b55cb971529f38278cf64e
Time: 2018-03-26
Author: pmhobson@gmail.com
File Name: examples/images_contours_and_fields/contour_image.py
Class Name:
Method Name:


Project Name: scikit-image/scikit-image
Commit Name: 25f5729d570c66e4f55cb23a7a41db9382b9015e
Time: 2016-06-19
Author: devel@sciunto.org
File Name: doc/examples/segmentation/plot_thresholding.py
Class Name:
Method Name: