Created
August 24, 2021 16:38
-
-
Save Juanmontenegro99/f346997505334d9fa9a4dbb2ecf3f6ab to your computer and use it in GitHub Desktop.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
transform = flip.transformers.Compose([ | |
flip.transformers.ApplyToObjects(transform_objects), | |
flip.transformers.domain_randomization.ObjectsRandomPosition( | |
x_min=0, y_min=0.5, x_max=1, y_max=1, mode='percentage' | |
), | |
flip.transformers.domain_randomization.Draw(), | |
flip.transformers.labeler.CreateBoundingBoxes(), | |
flip.transformers.labeler.CreateMasks(classes_names), | |
flip.transformers.io.SaveImage(OUT_DIR, name), | |
flip.transformers.io.SaveMask(OUT_DIR, name), | |
] | |
) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment