xarray_images.py 404 B

123456789101112131415161718192021
  1. # I need a couple of images of positive and negative class members for my poster
  2. import xarray as xr
  3. import numpy as np
  4. import matplotlib.pyplot as plt
  5. import torch as th
  6. # Dataset is a torch dataset
  7. def get_image(dataset, idx):
  8. img = dataset[idx][0].numpy()
  9. return img
  10. def plot_image(img, path):
  11. plt.imshow(img)
  12. plt.savefig(path)
  13. def get_random_positive_image(dataset):
  14. idx =