You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I can confirm the flaw. But the weird thing is that the disparity map generated with the fix is worse (less smoothed and many holes) than the original one.
in disprange_aggregation function
following statement
if((A[current_path][curx][cury-direction_y][pdisp]+LARGE_PENALTY)<term_1)
should be
if((A[current_path][curx-direction_x][cury-direction_y][pdisp]+LARGE_PENALTY)<term_1)
can some body clarify
The text was updated successfully, but these errors were encountered: