Hello,
I am wondering which parameters would you think is best to change in one of the config files when inputing low res images (due to their small size, 480*360). Definitely the resize option needs to be changed but what else would be needed to improve accuracy?
Thank you
You may further try multi-scale training to improve accuracy. A template is here.
Thanks. I observe however that you have this:
dict(
type='Resize',
img_scale=[(1600, 400), (1600, 1400)],
multiscale_mode='range',
keep_ratio=True)
Why is (1600,400) there two times?
Also, later you have:
test_pipeline = [
dict(type='LoadImageFromFile'),
dict(
type='MultiScaleFlipAug',
img_scale=(1333, 800),
flip=False
Why is it in testing (1333,800)?
Thanks for your reply.
Do you have a similar example only for bounding boxes detector (without mask)?
The multi-scale setting works for both only detection or instance segmentation.
Most helpful comment
You may further try multi-scale training to improve accuracy. A template is here.