gedepth icon indicating copy to clipboard operation
gedepth copied to clipboard

What does the function find_k(gt_img, pe_img_comput, run_name) work for?

Open qgq99 opened this issue 8 months ago • 0 comments

Hi, thanks for your excellent work! I wonder what the function find_k of file "preprocess_data_kitti.py" is doing?

def find_k(gt_img, pe_img_comput, run_name):
    a = (-1.65) / pe_img_comput
    b = 1.65 / gt_img
    k = b + a
    return k

qgq99 avatar Jun 12 '24 07:06 qgq99