quantombone / exemplarsvm

Ensemble of Exemplar-SVMs for Object Detection and Beyond

Home Page:http://www.cs.cmu.edu/~tmalisie/projects/iccv11/index.html

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Weird code in esvm_nms

dgominski opened this issue · comments

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

Nope, my bad