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
08 Nov, 2013
5 commits
  • Add support for a simple append flag for enroll ...
    e11b68d6
    This change consolidates the previous 'read' and 'noDuplicates' flags into a
    single 'append' flag. If append is specified, and an output gallery already
    exists, and the gallery format supports read/write or has explicit append
    support, then enrollment will be restricted to those files in the input list
    not already present in the gallery, and the results will be appended to the
    existing gallery.
    
    append defaults to 'false', which is a deparature from previous behavior.
    
    The .gal format has explicit append support, for other cases, if the gallery
    supports both read and write (less common than you might think), we support
    append by reading the existing gallery, and writing back out to an overwriting
    file. It should be possible to add explicit append support to several other
    gallery types.
    Charles Otto authored
    2013-11-08 12:02:23 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr into streamlining
    e0aabf8c
    Charles Otto authored
    2013-11-08 11:22:20 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    217047b1
    Josh Klontz authored
    2013-11-08 11:20:17 -0500  
    Browse Code »
  • allow plugin base classes to overload init
    b495b34d
    Josh Klontz authored
    2013-11-08 11:20:12 -0500  
    Browse Code »
  • Keep all rects in Contract
    479f4630
    Austin Blanton authored
    2013-11-08 09:48:20 -0500  
    Browse Code »

07 Nov, 2013
4 commits
  • In enroll, apply Stream's staging logic to the base algorithm ...
    c6a5dfec
    When setting up the stream in enroll, use the Stream interface's staging logic
    on the input algorithm. Making this happen is slightly complex when we don't
    particularly have header files, but on the plus side algorithms incorporating
    something like Show (e.g. ShowFaceDetection) will not be used as a single
    threaded stage in the process.
    Charles Otto authored
    2013-11-07 22:24:05 -0500  
    Browse Code »
  • Remove some debug output, add a stream to AlgorithmCore::train ...
    a2489d31
    Since we no longer add distribute in AlgorithmCore::init, instead adding a
    task specific stream in AlgorithmCore::enroll, we also add a stream to the
    algorithm in train, so that the training data will be projected in parallel
    by PipeTransform::train.
    Charles Otto authored
    2013-11-07 21:21:07 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr into streamlining
    a29de4c1
    Charles Otto authored
    2013-11-07 21:07:16 -0500  
    Browse Code »
  • Put template in a templatelist before enrolling, return the templatelist
    9d5acfe2
    Austin Blanton authored
    2013-11-07 17:52:58 -0500  
    Browse Code »

06 Nov, 2013
15 commits
  • Merge branch 'master' of https://github.com/biometrics/openbr
    c5786a1a
    Brendan Klare authored
    2013-11-06 22:56:02 -0500  
    Browse Code »
  • Remove temp file
    5d9b53fa
    Brendan Klare authored
    2013-11-06 22:55:55 -0500  
    Browse Code »
  • Sigests containing the FDDB bounding box locations
    5b849a26
    Brendan Klare authored
    2013-11-06 22:55:41 -0500  
    Browse Code »
  • 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 pull request #125 from biometrics/python_c_api ...
    9f10de6b
    Decode and enroll images from strings in C API
    Austin Blanton authored
    2013-11-06 13:05:44 -0800  
    Browse Code »
  • Add docs for new C API funcs
    d711c382
    Austin Blanton authored
    2013-11-06 16:04: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 »
  • Fix image loading from char buffer
    511dae91
    Austin Blanton authored
    2013-11-06 13:06:59 -0500  
    Browse Code »
  • Fix some C API issues
    eaeb3531
    Austin Blanton authored
    2013-11-06 11:38:59 -0500  
    Browse Code »
  • Added stasm4 hair abbrieviation
    7c90515d
    Scott Klum authored
    2013-11-06 10:43:05 -0500  
    Browse Code »

05 Nov, 2013
2 commits
  • Decode and enroll images from strings in C API
    51f633f3
    Austin Blanton authored
    2013-11-05 15:38:26 -0500  
    Browse Code »
  • 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
8 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 »