Skip to content

Instantly share code, notes, and snippets.

@ryanleeallred
Created April 25, 2018 16:33
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 ryanleeallred/82184c2b8a5f4108ac1f679d0956ddda to your computer and use it in GitHub Desktop.
Save ryanleeallred/82184c2b8a5f4108ac1f679d0956ddda to your computer and use it in GitHub Desktop.
# Shift images vertically or horizontally
# Fill missing pixels with the color of the nearest pixel
datagen = ImageDataGenerator(width_shift_range=.2,
height_shift_range=.2,
fill_mode='nearest')
# fit parameters from data
datagen.fit(x_train)
# Configure batch size and retrieve one batch of images
for X_batch, y_batch in datagen.flow(x_train, y_train, batch_size=9):
# Show 9 images
for i in range(0, 9):
pyplot.subplot(330 + 1 + i)
pyplot.imshow(X_batch[i].reshape(img_rows, img_cols, 3))
# show the plot
pyplot.show()
break
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment