Augmentations increase the generalizability of your model’s performance through increasing the diversity of learning examples for your model.
In Roboflow, select how many times you seek a given image to be augmented. For example, sliding to 3 means each of your images will receive 3 random augmentations based on the settings you select.
In Roboflow, augmentations are chained together. For example, if you select “flip horizontally” and “salt and pepper noise,” a given image will randomly be reflected as a horizontal flip and receive random salt and pepper noise.
Doing your augmentations through Roboflow rather than at the time of training has a few key benefits.
Randomly flip (reflect) an image vertically or horizontally. Annotations are correctly mirrored.
Horizontal: Flip the image’s numpy array in the left/right direction.
Vertical: Flip the image’s numpy array in the up/down direction.
Randomly rotate an image 90 degrees or 180 degrees.
Clockwise: Rotates an image 90 degrees clockwise.
Counter Clockwise: Rotates an image 90 degrees counter clockwise.
Upside Down: Rotates an image 180 degrees (upside down).
Randomly rotate an image clockwise or counter clockwise up to the degree amount the user selects.