I have an object detection dataset, on which I applied the augmentations like blur, gaussian noise and grayscale using roboflow standard augmentations. When I run faster-rcnn from detectron2 on this dataset, I get the following error:
detectron2.data.detection_utils.SizeMismatchError: Mismatched image shape for image <image_path.jpg> , got (1582, 2048), expect (1584, 2048). Please check the width/height in your annotation.
The same code works fine with the version of dataset without augmentations.
I tried generating the dataset version again with the same augmentations. It still shows the same error.
@Mohamed