open-mmlab / mmflow

OpenMMLab optical flow toolbox and benchmark

Home Page:https://mmflow.readthedocs.io/en/latest/

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

input image size question

dialuser opened this issue · comments

Hi

My use case involves 180x360 image frames (satellite earth data). Can I configure mmflow models to take that type of input sizes?

Thanks,
Alex

I just suggest you might follow this dataset cfg file to define your own dataset config, and pay more attention the crop_size and make sure it suits your dataset

dict(type='RandomCrop', crop_size=(320, 448)),

thanks.