Don't flip image when plotting

This commit is contained in:
Adam J. Stewart 2021-08-02 18:10:50 +00:00 коммит произвёл Caleb Robinson
Родитель a207f0ee5a
Коммит ea2ebdc6e6
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -152,6 +152,6 @@ class NAIP(GeoDataset):
# Plot the image
ax = plt.axes()
ax.imshow(array, origin="lower")
ax.imshow(array)
ax.axis("off")
plt.show()