I want to randomly rotate my images in 90, 180, and 270 degrees, that is, by multiples of 90 degrees.
Currently, I am using the ImageDatagenerator to augment my data:
train_dataGen = ImageDataGenerator(rescale=None,horizontal_flip=True,rotation_range=90,
vertical_flip=True)
If rotation_range variable is equal to 90, like the code above, does it only do rotations of 90 degrees? or does it perform rotations of multiples of 90?



