Matplotlib - Image Display
Given this code snippet:
What is the expected visual effect compared to
import matplotlib.pyplot as plt import numpy as np image = np.array([[0, 1], [1, 0]]) plt.imshow(image, interpolation='bicubic') plt.show()
What is the expected visual effect compared to
interpolation='nearest'?