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
108: variable was given as vshift instead of opt.vshift in 2 locations
109 and 110: zero-indexing-related error produces inconsistent image sizes --> stereo_match doesn't work. My solution:
if opt.vshift ~= 0
if opt.vshift > 0
L = L(1:end-opt.vshift+1,:);
R = R(opt.vshift:end,:);
else
opt.vshift = -opt.vshift;
L = L(opt.vshift:end,:);
R = R(1:end-opt.vshift+1,:);
end
end
The text was updated successfully, but these errors were encountered:
Two bugfixes (I think) in istereo:
The text was updated successfully, but these errors were encountered: