Closed Diksha-Moolchandani closed 3 years ago
If I read this correctly, the error is measured in pixels, right? 0.59 isn't a large pixel error, in fact it's probably very good, considering the fact that FlowNet2 is not specialized for disparity. Did you check the results visually, e.g. by warping the right image onto the left and looking at the difference to the original left image?
I ran the flownet2-kitti model provided in the repo. The dataset used was KITTI 2015 training dataset with left images in the image_2/ folder, right images in the image_3/ folder, and the ground truth disparity in the disp_occ_0/ folder. I have modified run-flownet-many.py with the Kitti dataloader.
I am getting an average error of 0.59 (averaged across the 200 images in the dataset).
The error is calculated using compareDisp(ground_truth, blob). This function is called after line 98 in run-flownet.py. The function is described below.
def compareDisp(disp_L, flow):
The error seems very large. Can anyone help me with this? Similar function is used in ISM algorithm (MICRO paper) and AnyNet code I can share the modified python file, if needed.