Results 3 issues of Simon

We note that in the Depth Map Validation, end point error (EPE), > 1 pixel error and > 3 pixel error are used to demonstrate the capacity of BlendedMVS dataset....

When evaluate the result using the newst open3d v0.12.0, the following error will occur **AttributeError: module 'open3d' has no attribute 'registration'** My solution is to install an older version of...

1、if (img.at(pp.y, pp.x) < img.at(qq.y, qq.x)) 可能出现越界问题,建议加上以下语句判断避免越界。 if(pp.y>=img.rows){pp.y=img.rows-1;} if(qq.y>=img.rows){qq.y=img.rows-1;} if(pp.x>=img.cols){pp.x=img.cols-1;} if(qq.x>=img.cols){qq.x=img.cols-1;} if(pp.y