Home | History | Annotate | Download | only in src

Lines Matching defs:lst

222     std::vector<hough_index> lst;
244 lst.push_back(hough_index(threshold, -1.f, 0.f));
379 int pos = (int)(lst.size() - 1);
380 if( pos < 0 || lst[pos].value < mcaccum[index] )
385 lst.push_back(vi);
388 if( lst[pos].value > vi.value )
390 lst[pos+1] = lst[pos];
392 lst[pos+1] = vi;
393 if( (int)lst.size() > linesMax )
394 lst.pop_back();
401 for( size_t idx = 0; idx < lst.size(); idx++ )
403 if( lst[idx].rho < 0 )
405 lines.push_back(Vec2f(lst[idx].rho, lst[idx].theta));