facebookresearch / maskrcnn-benchmark

Fast, modular reference implementation of Instance Segmentation and Object Detection algorithms in PyTorch.
MIT License
9.31k stars 2.49k forks source link

How to Use Images Instead of Proposals in ROI_Head Predictors? #1330

Open zhanwenchen opened 2 years ago

zhanwenchen commented 2 years ago

❓ Questions and Help

Hi,

I see that all the forward functions in roi_head/predictors take proposals as the first argument. Is it possible to pass images instead of with the help of a config option config.model.use_proposals=False? (I've figured out how to edit configs). How would I go about doing that?

Thanks