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 Mar, 2013
10 commits
  • move CompositeTransform to meta.cpp
    9def2dd6
    Charles Otto authored
    2013-03-08 14:07:19 -0500  
    Browse Code »
  • Merge branch 'video_thing' of https://github.com/biometrics/openbr into video_thing
    f370d6e9
    Josh Klontz authored
    2013-03-08 13:40:08 -0500  
    Browse Code »
  • formatting tweaks
    63b12502
    Josh Klontz authored
    2013-03-08 13:39:54 -0500  
    Browse Code »
  • Update changelog to reflect preliminary changes to Transform API
    928d7047
    Charles Otto authored
    2013-03-08 13:33:24 -0500  
    Browse Code »
  • Formatting updates for openbr_plugin.h
    40483f50
    Charles Otto authored
    2013-03-08 13:25:08 -0500  
    Browse Code »
  • Shut up unused param warning using (void) thing instead
    faba75f3
    Charles Otto authored
    2013-03-08 12:38:52 -0500  
    Browse Code »
  • renameACoupleMemberVariables
    e93ea97d
    Charles Otto authored
    2013-03-08 11:57:53 -0500  
    Browse Code »
  • Remove RndTransform
    dd92d1eb
    Charles Otto authored
    2013-03-08 11:57:06 -0500  
    Browse Code »
  • Restructure composite transform inheritance ...
    b8611ea4
    Make ExpandTransform inherit from PipeTransform, move default implementations
    of several things to PipeTransform.
    This is cleaner since only ExpandTransform and PipeTransform actually share
    code (since they have the same basic execution path).
    Implement ExpandTransform using a decorator class.
    Charles Otto authored
    2013-03-08 11:00:36 -0500  
    Browse Code »
  • API changes in support of adding a stream based processing model ...
    e465e02e
    Allow inherited properties to be set via a transforms argument list at the
    command line, but exclude properties of classes that directly inherit from
    br::Object (this excludes e.g. Transform's properties which should be set
    during training). Properties are set in the same order that is currently used
    (the order of their property declarations), but all superclass properties are
    set before base class properties.
    
    Changes to the Transform API: add a set of methods supporting non-const project
    operations. Since overloading with a non-const version of the same function
    name won't work, the methods are called projectUpdate, since they perform the
    expected project operation, but also allow the transform to update its internal
    state. This can be used to support tracking operations, as well as online
    learning methods. All current classes can implement projectUpdate by calling
    their const project method.
    
    To handle variable input/output situations (e.g. a tracking function may only
    wish to emit a single template per unique detected object), a "finalize" method
    is also added to Transform, to be called to indicate that no further calls to
    projectUpdate will be made, and allow the transform to emit any final templates
    This is only relevant for non-const project since a time-invariant transform
    has no way to manage an internal list of templates it is waiting to emit.
    
    Add a "timeVarying" method to Transform, which returns a bool indicate whether
    or not the transform is time-invariant (only projectUpdate should be called
    for a time-varying transform).
    
    Refactor Transforms that maintain a list of subclasses (pipe transform, expand
    transform, fork transform, random transform) to inherit from a common subclass
    (CompositeTransform). Time variance for composite transforms is set based on
    their child transforms -- a composite transform with any time-varying children
    is time-varying. Some code consolidation via the shared subclass.
    Charles Otto authored
    2013-03-08 10:13:05 -0500  
    Browse Code »

07 Mar, 2013
3 commits
  • corrected loading message defaults
    fe72ae12
    Josh Klontz authored
    2013-03-07 18:51:02 -0500  
    Browse Code »
  • added search example
    81ff707a
    Josh Klontz authored
    2013-03-07 18:45:16 -0500  
    Browse Code »
  • fixed spacing
    82da48ed
    Josh Klontz authored
    2013-03-07 16:37:30 -0500  
    Browse Code »

06 Mar, 2013
13 commits
  • fixed you tube face sorting issue
    3e2bb595
    Josh Klontz authored
    2013-03-06 23:24:05 -0500  
    Browse Code »
  • cleaned up tests
    d7b36b93
    Josh Klontz authored
    2013-03-06 21:50:06 -0500  
    Browse Code »
  • minor youtube fix
    39cd4d63
    Josh Klontz authored
    2013-03-06 21:16:17 -0500  
    Browse Code »
  • Various bug fixes
    700eae96
    Scott Klum authored
    2013-03-06 18:35:25 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    e19e4805
    Scott Klum authored
    2013-03-06 18:32:43 -0500  
    Browse Code »
  • ct8 tweak
    c950d180
    Josh Klontz authored
    2013-03-06 16:22:23 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    b92e3530
    Josh Klontz authored
    2013-03-06 15:30:39 -0500  
    Browse Code »
  • added support for non-square identity matricies
    75a21481
    Josh Klontz authored
    2013-03-06 15:30:32 -0500  
    Browse Code »
  • CT8 fix
    64a36c1c
    Scott Klum authored
    2013-03-06 14:21:10 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    82dcffcf
    Scott Klum authored
    2013-03-06 14:20:54 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    0fe1acc2
    Scott Klum authored
    2013-03-06 14:20:45 -0500  
    Browse Code »
  • Local
    2463460d
    Scott Klum authored
    2013-03-06 14:20:42 -0500  
    Browse Code »
  • cleaned up logic for retrieveOrEnroll
    99dd9000
    Josh Klontz authored
    2013-03-06 14:16:53 -0500  
    Browse Code »

05 Mar, 2013
1 commit
  • windows debug output fix
    e8c22427
    Josh Klontz authored
    2013-03-05 14:43:19 -0500  
    Browse Code »

04 Mar, 2013
8 commits
  • Small correction in StatTransform
    e54868bc
    lbestrowden authored
    2013-03-04 23:09:28 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    3b7099e5
    Josh Klontz authored
    2013-03-04 13:37:54 -0500  
    Browse Code »
  • opencv libs hotfix
    ca298753
    Josh Klontz authored
    2013-03-04 13:37:45 -0500  
    Browse Code »
  • code cleanup
    99dc500c
    Josh Klontz authored
    2013-03-04 13:12:23 -0500  
    Browse Code »
  • cleaned up opencv dependencies
    df25daf0
    Josh Klontz authored
    2013-03-04 13:08:11 -0500  
    Browse Code »
  • added ability to enroll part of a gallery
    02743edc
    Josh Klontz authored
    2013-03-04 12:51:07 -0500  
    Browse Code »
  • made loading feature message only appear in verbose mode
    57b7497e
    Josh Klontz authored
    2013-03-04 00:26:53 -0500  
    Browse Code »
  • build instruction tweaks
    3594e669
    Josh Klontz authored
    2013-03-04 00:00:55 -0500  
    Browse Code »

03 Mar, 2013
4 commits
  • finished NEC Latent SDK wrapper
    bac81de9
    Josh Klontz authored
    2013-03-03 23:52:44 -0500  
    Browse Code »
  • Merge pull request #19 from biometrics/transforms ...
    a0ffa4ad
    Added DownsampleTransform
    jklontz authored
    2013-03-03 12:10:54 -0800  
    Browse Code »
  • DownsampleTransform and adding myself to openbr.bib
    a12c0111
    lbestrowden authored
    2013-03-03 13:56:55 -0500  
    Browse Code »
  • Revert "DownsampleTransform and adding myself to openbr.bib" ...
    6ffd8370
    This reverts commit 64df774691dfb2bd3abd5fcf4a01a37d4413038e.
    lbestrowden authored
    2013-03-03 13:41:32 -0500  
    Browse Code »

02 Mar, 2013
1 commit
  • Merge pull request #20 from biometrics/opencv_2.4.4 ...
    44cdf3bb
    Opencv 2.4.4
    jklontz authored
    2013-03-02 23:06:20 -0800  
    Browse Code »