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
04 Mar, 2014
8 commits
  • Merge branch 'master' of https://github.com/biometrics/openbr into fbi_ebts_updates
    4fb48f36
    Scott Klum authored
    2014-03-04 16:15:31 -0500  
    Browse Code »
  • Removed comment about bug that was fixed!
    01ba158a
    Scott Klum authored
    2014-03-04 16:15:04 -0500  
    Browse Code »
  • Added demographic support
    5fa7274a
    Scott Klum authored
    2014-03-04 16:14:28 -0500  
    Browse Code »
  • Switch to fields being a hash
    6c079c4e
    Scott Klum authored
    2014-03-04 15:59:29 -0500  
    Browse Code »
  • QVector::removeLast a new addition in Qt5.1, use remove instead
    b722a73f
    Austin Blanton authored
    2014-03-04 15:57:26 -0500  
    Browse Code »
  • Generalized EBTS support
    a59339b0
    Scott Klum authored
    2014-03-04 15:54:41 -0500  
    Browse Code »
  • Generalized EBTS support
    2f33ea8c
    Scott Klum authored
    2014-03-04 15:46:28 -0500  
    Browse Code »
  • More robust parsing in place
    16363df8
    Scott Klum authored
    2014-03-04 12:36:32 -0500  
    Browse Code »

03 Mar, 2014
3 commits
  • Merge pull request #164 from biometrics/string_management ...
    a232dceb
    Updates to the c API to handle returning strings more safely
    Austin Blanton authored
    2014-03-03 18:50:29 -0500  
    Browse Code »
  • Update brpy with string_management changes to C API and make string functions more Pythonic
    afe4dc93
    Austin Blanton authored
    2014-03-03 18:37:31 -0500  
    Browse Code »
  • Put buffer and buffer_length at beginning of args for consistency (and so we can… ...
    a4c0ddde
    … use *args for the rest in python)
    Austin Blanton authored
    2014-03-03 18:34:19 -0500  
    Browse Code »

01 Mar, 2014
12 commits
  • Add a Transform interface to distance -- compares each input against a fixed gallery
    effd3d22
    Charles Otto authored
    2014-03-01 14:01:27 -0500  
    Browse Code »
  • Update several c-api functions to take string buffers as input ...
    bf44e21a
    Instead of returning references to static memory (which are invalidated by
    subsequent or concurrent calls to the function), require users to input string
    buffers to functions that return strings.
    
    Affected functions:
    br_get_filename
    br_get_metadata_string
    br_scratch_path
    br_objects
    br_most_recent_message
    
    In some GUI functions, use C++ functions instead of going through the c api
    add a c++ method correspondign to br_objects (which returns a stringlist
    instead of merging the lines)
    
    br_read_pipe and br_get_header also use static memory in a similar way, but
    are not addressed in this commit.
    Charles Otto authored
    2014-03-01 13:01:03 -0500  
    Browse Code »
  • Add mutexes to some functions that return pointers to static variables ...
    94463713
    br_about, br_version, and br_sdk_path return pointers to static memory declared
    at function scope, that is intialized once and never changed.
    
    In versions of visual studio (prior to 2013 apparently), this initialization is
    not thread safe (thread safety of this operation is in c++-11).
    
    Removed references to managed_return_value in the documentation of these
    methods. The memory returned here is not invalidated by subsequent calls to the
    function, so that comment does not apply.
    Charles Otto authored
    2014-03-01 13:01:03 -0500  
    Browse Code »
  • Added some things related to leave one out cv
    725e25b4
    Scott Klum authored
    2014-03-01 12:38:51 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    04df7bef
    Scott Klum authored
    2014-03-01 11:45:13 -0500  
    Browse Code »
  • Added some comments about leaveOneOut crossValidation
    c7010d94
    Scott Klum authored
    2014-03-01 11:44:37 -0500  
    Browse Code »
  • Fix br -objects
    f794e6e0
    Charles Otto authored
    2014-03-01 11:15:15 -0500  
    Browse Code »
  • Refactored from gallery a bit
    91eff7dd
    Scott Klum authored
    2014-03-01 10:19:43 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    e6ad9c22
    Scott Klum authored
    2014-03-01 10:14:35 -0500  
    Browse Code »
  • Add a transform for manually marking rectangles
    4c595c32
    Charles Otto authored
    2014-03-01 10:05:03 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    40b8933d
    sklum authored
    2014-03-01 09:53:04 -0800  
    Browse Code »
  • Remove all partition training data when training distances
    8917c959
    sklum authored
    2014-03-01 09:50:59 -0800  
    Browse Code »

28 Feb, 2014
9 commits
  • Added rect from stasm jaw abbreviation
    a66afbe5
    Scott Klum authored
    2014-02-28 14:55:26 -0500  
    Browse Code »
  • Added abbrievation for nose with bridge
    0bd66343
    Scott Klum authored
    2014-02-28 14:06:25 -0500  
    Browse Code »
  • Append system paths to list of paths to check
    0e316414
    Austin Blanton authored
    2014-02-28 13:15:25 -0500  
    Browse Code »
  • made .rr simple mode more consistent
    1a79e098
    Josh Klontz authored
    2014-02-28 12:56:24 -0500  
    Browse Code »
  • janus compile fix
    a85b4ebf
    Josh Klontz authored
    2014-02-28 12:33:31 -0500  
    Browse Code »
  • cheap fix to br_get_filename
    a673c49d
    Josh Klontz authored
    2014-02-28 12:26:29 -0500  
    Browse Code »
  • changed br behavior to default to not initializing with gui funtionality unless … ...
    0064b8b3
    …-gui is specified as the first argument
    Josh Klontz authored
    2014-02-28 12:16:59 -0500  
    Browse Code »
  • fixed spacing
    13b2233c
    Josh Klontz authored
    2014-02-28 12:05:10 -0500  
    Browse Code »
  • updated to latest janus
    c796fa4f
    Josh Klontz authored
    2014-02-28 12:04:48 -0500  
    Browse Code »

27 Feb, 2014
6 commits
  • Cleaned up Sum and Attribute distance, and added proper label comments
    b96e72db
    Scott Klum authored
    2014-02-27 17:14:47 -0500  
    Browse Code »
  • Merge branch 'fbi_ebts'
    f1f3728b
    Scott Klum authored
    2014-02-27 17:05:38 -0500  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    8a204192
    Scott Klum authored
    2014-02-27 17:05:23 -0500  
    Browse Code »
  • Added comments regarding FBI documents and known bugs
    b9d6ddae
    Scott Klum authored
    2014-02-27 17:03:29 -0500  
    Browse Code »
  • Preliminary support for FBI EBTS format
    5f659009
    Scott Klum authored
    2014-02-27 16:57:39 -0500  
    Browse Code »
  • Scaffolding in place for EBTS format
    2fc1d15e
    Scott Klum authored
    2014-02-27 16:57:11 -0500  
    Browse Code »

26 Feb, 2014
2 commits
  • Add vbb if set in metadata, add warning if cvmatio not installed when reading seqs
    41ad4467
    Austin Blanton authored
    2014-02-26 21:52:26 -0500  
    Browse Code »
  • Add vbb attribute in Caltech sigsets
    e9e9c555
    Austin Blanton authored
    2014-02-26 21:50:30 -0500  
    Browse Code »