FCOS
FCOS copied to clipboard
how to add image augmentations
transform = T.Compose( [ T.Resize(min_size, max_size), T.RandomHorizontalFlip(flip_prob), T.ToTensor(), normalize_transform, ] there are only aumentations like image resize, rotate etc i want to add some augmentations about image color, how to achieve it? thanks
Hello, I find it in the maskrcnn transforms : https://github.com/facebookresearch/maskrcnn-benchmark/blob/master/maskrcnn_benchmark/data/transforms/transforms.py