Skip to content

Instantly share code, notes, and snippets.

@Diyago
Last active August 11, 2019 09:32
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save Diyago/696b6047925c67196b4a304d6090cd40 to your computer and use it in GitHub Desktop.
Save Diyago/696b6047925c67196b4a304d6090cd40 to your computer and use it in GitHub Desktop.
def __init__(self, root_dir=r'../data/val_test', image_folder='img/', mask_folder='masks/',
batch_size=1, image_size=768, nb_y_features=1,
augmentation=None,
suffle=True):
self.image_filenames = listdir_fullpath(os.path.join(root_dir, image_folder))
self.mask_names = listdir_fullpath(os.path.join(root_dir, mask_folder))
self.batch_size = batch_size
self.augmentation = augmentation
self.image_size = image_size
self.nb_y_features = nb_y_features
self.suffle = suffle
def listdir_fullpath(d):
return np.sort([os.path.join(d, f) for f in os.listdir(d)])
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment