Skip to content

Instantly share code, notes, and snippets.

@ksdkamesh99
Created May 17, 2020 06:50
Show Gist options
  • Select an option

  • Save ksdkamesh99/7eaefc9d15befe0799417e61d0941c19 to your computer and use it in GitHub Desktop.

Select an option

Save ksdkamesh99/7eaefc9d15befe0799417e61d0941c19 to your computer and use it in GitHub Desktop.
datagen=ImageDataGenerator()
imagegen=datagen.flow_from_directory('images/',batch_size=1)
x=imagegen.next()
plt.imshow(x[0][0].astype('uint8'))
plt.show()
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment