Thank you for your great work.
I have a question about the three pixel error benchmark in your code. Can you explain why the disp_true was less than 1? Should we replace the number 1 by the number 3 for the threshold? And why you consider the situation when disp_true < true_disp*0.05?
correct = (disp_true[index[0][:], index[1][:], index[2][:]] < 1)|(disp_true[index[0][:], index[1][:], index[2][:]] < true_disp[index[0][:], index[1][:], index[2][:]]*0.05)
This is code line 145 in file train.py
Thank you for your great work.
I have a question about the three pixel error benchmark in your code. Can you explain why the
disp_truewas less than 1? Should we replace the number 1 by the number 3 for the threshold? And why you consider the situation whendisp_true < true_disp*0.05?This is code line 145 in file
train.py