Logo white

Peter M. Groen / openbr

Sign in
  • Sign in
  • Project
  • Files
  • Commits
  • Network
  • Graphs
  • Milestones
  • Issues 0
  • Merge Requests 0
  • Labels
  • Wiki
  • Commits 4,015
  • Compare
  • Branches 1
  • Tags 0
  • openbr
06 Nov, 2013
8 commits
  • Simple script to convert FDDB to xml
    234ad168
    Brendan Klare authored
    2013-11-06 22:55:09 -0500  
    Browse Code »
  • Removed additional un-needed (and erroneous) files
    47a51f0a
    Brendan Klare authored
    2013-11-06 22:39:26 -0500  
    Browse Code »
  • Removed un-needed FDDB files
    9e7aa726
    Brendan Klare authored
    2013-11-06 22:37:14 -0500  
    Browse Code »
  • Merge branch 'RegionConsolidate' ...
    f95bb8b7
    A new transform, ConsolidateRegions, is added. This transform should
    be used after BuildScales and/or SlidingWindow to take potentially
    overlapping detections, and consolidate them into a single detection.
    This is a very numerically correct approach, in that a Laplacian matrix
    is built from overlapping rectangles, and spectral clustering is then
    performed to find the clusters/groupings of detected regions. However,
    it is perhaps not the most computationally efficient solution, especially
    when the number of detected regions is large (e.g., over 200). This is b/c
    the eigendecomposition step will be a bit of a bottleneck.
    
    Future solutions could move in one of (at least) two directions. The first is
    the use of numerical analysis methods to efficiently find the smallest eigenvalue/vectors.
    This is not readily support by Eigen.
    
    The second would be more logic-based approaches. Presumably the method used by opencv
    to consolidate regions would be applicable here.
    
    In the meantime this solutions very much works, and should be used until a more
    effecient method is made available.
    Brendan Klare authored
    2013-11-06 14:25:23 -0500  
    Browse Code »
  • Stable consolidate regions
    e4a62a38
    Brendan Klare authored
    2013-11-06 14:24:57 -0500  
    Browse Code »
  • Helper function to write out a Eigen matrix (useful for matlab debugging)
    14366803
    Brendan Klare authored
    2013-11-06 14:23:50 -0500  
    Browse Code »
  • Removed microsoft newline endings
    e37bb529
    Brendan Klare authored
    2013-11-06 14:23:23 -0500  
    Browse Code »
  • Added stasm4 hair abbrieviation
    7c90515d
    Scott Klum authored
    2013-11-06 10:43:05 -0500  
    Browse Code »

05 Nov, 2013
1 commit
  • Decoupled some stasm related stuff
    c7ba25eb
    Scott Klum authored
    2013-11-05 12:46:59 -0500  
    Browse Code »

01 Nov, 2013
2 commits
  • Added a check for simmat and file size for convert
    8ea461f0
    Scott Klum authored
    2013-11-01 11:33:48 -0400  
    Browse Code »
  • If a name is specified for loadstore we don't use the hash
    08f7a26d
    Scott Klum authored
    2013-11-01 11:32:01 -0400  
    Browse Code »

31 Oct, 2013
4 commits
  • Merge pull request #124 from biometrics/loadstore_updates ...
    a6f65037
    Loadstore updates
    jklontz authored
    2013-10-31 10:42:01 -0700  
    Browse Code »
  • Removed comment
    16b6991a
    Scott Klum authored
    2013-10-31 12:50:57 -0400  
    Browse Code »
  • Shouldn't put LoadStore in CrossValidate since it needs to be trained
    acf10452
    Scott Klum authored
    2013-10-31 12:50:27 -0400  
    Browse Code »
  • LoadStore with the ability to embed in CrossValidate
    d5544c8b
    Scott Klum authored
    2013-10-31 12:49:31 -0400  
    Browse Code »

30 Oct, 2013
11 commits
  • Fixed debug variable
    ab636546
    Brendan Klare authored
    2013-10-30 17:20:52 -0400  
    Browse Code »
  • Store distance from margin in 1x1 Mat
    d95393a6
    Austin Blanton authored
    2013-10-30 15:43:35 -0400  
    Browse Code »
  • played around with weighing the HoG vectors based on magnitude, didn't see much of an impact
    d723e2ca
    Josh Klontz authored
    2013-10-30 13:57:43 -0400  
    Browse Code »
  • Initial consolidate regions code (compiles)
    c67db030
    Brendan Klare authored
    2013-10-30 13:48:12 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    4e02e315
    Brendan Klare authored
    2013-10-30 11:03:35 -0400  
    Browse Code »
  • Pedestrian detection baseline scripts and sigests
    f45eff41
    Brendan Klare authored
    2013-10-30 11:01:53 -0400  
    Browse Code »
  • Merge pull request #122 from biometrics/plot_enhancements ...
    fd580382
    Plot enhancements
    jklontz authored
    2013-10-30 07:41:47 -0700  
    Browse Code »
  • Sigsets for the INRIA database
    05806674
    Brendan Klare authored
    2013-10-30 10:41:36 -0400  
    Browse Code »
  • Removed debug statement
    f4f6f914
    Scott Klum authored
    2013-10-30 10:09:20 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr into plot_enhancements
    818bf25f
    Scott Klum authored
    2013-10-30 10:03:53 -0400  
    Browse Code »
  • Added cmcOpts file to simplify and compartmentalize plot options
    87543539
    Scott Klum authored
    2013-10-30 10:02:08 -0400  
    Browse Code »

29 Oct, 2013
2 commits
  • Speed ups and minor tweaks to sliding window
    c1dcf40e
    Brendan Klare authored
    2013-10-29 22:36:45 -0400  
    Browse Code »
  • Add INRIAPerson to data/README
    0d5075e0
    Austin Blanton authored
    2013-10-29 13:06:11 -0400  
    Browse Code »

28 Oct, 2013
1 commit
  • Moving positive and negative sample extraction from SlidingWindow to BuildScales… ...
    58f92519
    … to keep scale consistent
    Brendan Klare authored
    2013-10-28 23:35:50 -0400  
    Browse Code »

27 Oct, 2013
2 commits
  • Merge branch 'windowSpeedup' ...
    598a4160
    * Store confidence values in the Mat instead of the QMap.
    * Negative features are resized to the detector window size
    Brendan Klare authored
    2013-10-27 21:15:05 -0400  
    Browse Code »
  • Speedup for detection and improved negative feature sampling
    d0e416fc
    Brendan Klare authored
    2013-10-27 21:14:19 -0400  
    Browse Code »

26 Oct, 2013
5 commits
  • More nonsense to get around Qt's one object one thread policies ...
    2488533f
    Currently, no QtWarnings generated on windows, how exciting.
    Charles Otto authored
    2013-10-26 16:22:36 -0700  
    Browse Code »
  • Use dedicated threads for communcation for each ProcessWrapper instance ...
    b3411eda
    Although we do have to use exactly 1 thread for all operations on a given
    socket (at least on windows...), it doesn't have to be the main thread.
    
    Even odds if this will break windows support in some unforseen way.
    Charles Otto authored
    2013-10-26 13:39:14 -0400  
    Browse Code »
  • Clean up some warnings
    788722e1
    Charles Otto authored
    2013-10-26 13:18:03 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    85bf95aa
    Charles Otto authored
    2013-10-26 02:36:04 -0700  
    Browse Code »
  • ProcessWrapper round 2 ...
    ba5f51af
    In a shocking turn of events, Qt is annoying, and not particularly
    consistent across platforms.
    
    Lot of not particularly intelligent business with signals to get things to
    execute on the main thread.
    I would rather not even use the event driven interfaces to
    QLocalServer/QLocalSocket but sadly it seems that on windows even if we
    try and use the blocking calls, we are still required to use using exactly one
    thread per object. Of course that makes sense since obviously we are writing
    a simple event-driven GUI application.
    Charles Otto authored
    2013-10-26 02:28:17 -0700  
    Browse Code »

25 Oct, 2013
1 commit
  • fixed #120
    ea858027
    Josh Klontz authored
    2013-10-25 09:53:14 -0400  
    Browse Code »

24 Oct, 2013
3 commits
  • fixed linker error due to WorkerProcess::mainLoop() definition not being in br namespace
    885c3ec1
    Josh Klontz authored
    2013-10-24 10:51:57 -0400  
    Browse Code »
  • Merge pull request #119 from biometrics/shadow_process ...
    535886af
    Add a wrapper transform that runs a child transform in a separate process
    jklontz authored
    2013-10-24 07:44:39 -0700  
    Browse Code »
  • Silence a couple integer comparison warnings
    115566b0
    Charles Otto authored
    2013-10-24 10:17:24 -0400  
    Browse Code »