Open erichhhhho opened 5 years ago
In here, we should average the overlapping prediction instead of replacing it with new psub Should replace pred[:, :, sx:ex, sy:ey] = psub with pred[:, :, sx:ex, sy:ey] += psub
pred[:, :, sx:ex, sy:ey] = psub
pred[:, :, sx:ex, sy:ey] += psub
As shown in here:
In here, we should average the overlapping prediction instead of replacing it with new psub Should replace
pred[:, :, sx:ex, sy:ey] = psub
withpred[:, :, sx:ex, sy:ey] += psub
As shown in here: