sniklaus / pytorch-pwc

a reimplementation of PWC-Net in PyTorch that matches the official Caffe version
GNU General Public License v3.0
608 stars 122 forks source link

output of the run.py #41

Closed ShashiAdhikari closed 3 years ago

ShashiAdhikari commented 3 years ago

how do you check the output of the run.py? line no:32 of run.py

arguments_strOut = './out.flo'

sniklaus commented 3 years ago

Could you elaborate on what you mean by "check the output"?

ShashiAdhikari commented 3 years ago

Could you elaborate on what you mean by "check the output"? how to check the file after we run the run.py file

ShashiAdhikari commented 3 years ago

Could you elaborate on what you mean by "check the output"?

Run.py runs with no issue how do I know what is the ouput

sniklaus commented 3 years ago

If you didn't specify --out when running run.py then the estimated optical flow will be stored in out.flo. To read a .flo file, you can for example consider the following: https://stackoverflow.com/a/28016469