fasterrcnn-pytorch-training-pipeline
fasterrcnn-pytorch-training-pipeline copied to clipboard
Why are images without objects removed?
Thanks for this light weight faster rcnn implementation! However, I have been using Detectron2, and it is able to train on images without objects. I think it would be good to use them as negative examples.
@tolsicsse Thanks for the suggestion. I think Darknet also retains the images without ground truth bounding boxes. I did not know that Detectron 2 also does that. I have been trying to figure out the pipeline for that for some time now. But generally, the albumentations augmentations part will throw an error without ground truth boxes. Many other libraries also discard images without objects. But I am sure that what you are suggesting is bound to help. Still I will try to implement it.