Closed dgominski closed 6 years ago
In esvm_nms line 48, xx1 = max(x1(i), x1(I(1:last-1))); does the same as xx1 = max(x1); which is much simpler
xx1 = max(x1(i), x1(I(1:last-1)));
xx1 = max(x1);
Nope, my bad
In esvm_nms line 48,
xx1 = max(x1(i), x1(I(1:last-1)));
does the same asxx1 = max(x1);
which is much simpler