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
16 Mar, 2013
8 commits
  • Merge branch 'master' of https://github.com/biometrics/openbr
    e9a774f1
    Josh Klontz authored
    2013-03-16 17:45:26 -0400  
    Browse Code »
  • fixed embedded builds
    d8923cc4
    Josh Klontz authored
    2013-03-16 17:45:20 -0400  
    Browse Code »
  • windows compile fix
    fe556614
    Josh Klontz authored
    2013-03-16 16:03:07 -0400  
    Browse Code »
  • Updated gender classification model, unfortunately labels are ...
    7e6ac9f2
    currently being used backwards during evaluation
    Charles Otto authored
    2013-03-16 15:33:27 -0400  
    Browse Code »
  • Merge pull request #29 from biometrics/stream_processing ...
    3210b0b8
    basic support for online video processing
    jklontz authored
    2013-03-16 11:58:50 -0700  
    Browse Code »
  • Add a QT based transform for displaying images ...
    669c2c6e
    Add Show2Transform (should replace ShowTransform eventually), which displays
    input images using QT, rather than going through openCV.
    Additional modifications to support doing this (since qt is quite particular
    about how GUI elements are created/modified). Create a QApplication instead
    of a QCoreApplication (if not building BR_EMBEDDED), restructure br.cpp's main
    to run its main work in a separate thread while the main thread sits in an
    event loop.
    Charles Otto authored
    2013-03-16 14:46:21 -0400  
    Browse Code »
  • Add basic support for online video processing ...
    25d5b980
    Add StreamTransform which represents applying a series of transforms to some
    sequential input (e.g. a video). Handles reading video frames in and processing
    them as they become available (rather than loading the entire video into memory
    before processing it). The basic idea is a pipeline model, every child
    transform of StreamTransform is run by a separate thread, (as is reading in
    video frames). A thread waits for a frame as input, when input becomes
    available performs its operation, and then places the frame on the following
    stage's input buffer. Single threaded processing is not yet implemented.
    
    Moved CompositeTransform to openbr_plugin.h
    Add ContractTransform -- combines all input templates into a single template
    Preliminary handling of time varying transforms in DistributeTemplateTransform,
    the current behavior is not actually correct but will work for the single input
    case.
    Charles Otto authored
    2013-03-16 14:46:21 -0400  
    Browse Code »
  • reintroduced product quantization
    5e02aadf
    Josh Klontz authored
    2013-03-16 11:15:14 -0400  
    Browse Code »

15 Mar, 2013
5 commits
  • Introduced ImageRetrieval algorithm
    ccb66cf5
    Josh Klontz authored
    2013-03-15 22:00:33 -0400  
    Browse Code »
  • added more plugins
    c5f168d6
    Josh Klontz authored
    2013-03-15 20:13:29 -0400  
    Browse Code »
  • bug fixes
    1952d826
    Josh Klontz authored
    2013-03-15 16:39:06 -0400  
    Browse Code »
  • optimized enrollment from a directory
    c9e43a5f
    Josh Klontz authored
    2013-03-15 14:05:24 -0400  
    Browse Code »
  • finished draft of WordWiseTransform
    b5f4124c
    Josh Klontz authored
    2013-03-15 14:03:33 -0400  
    Browse Code »

14 Mar, 2013
3 commits
  • more code
    1c82d1ec
    Josh Klontz authored
    2013-03-14 18:00:50 -0400  
    Browse Code »
  • more new transforms
    590bb5d8
    Josh Klontz authored
    2013-03-14 16:48:01 -0400  
    Browse Code »
  • Update pre-trained FaceRecognition
    f05c88a7
    Charles Otto authored
    2013-03-14 11:53:32 -0400  
    Browse Code »

13 Mar, 2013
3 commits
  • added more transforms
    5f37e44f
    Josh Klontz authored
    2013-03-13 22:54:55 -0400  
    Browse Code »
  • minor fix
    94f8e680
    Josh Klontz authored
    2013-03-13 12:35:44 -0400  
    Browse Code »
  • added a check to only compute the matrix if it doesn't already exist
    371ed356
    Josh Klontz authored
    2013-03-13 12:34:49 -0400  
    Browse Code »

12 Mar, 2013
4 commits
  • Fixed Distribute transform
    05721739
    Scott Klum authored
    2013-03-12 15:27:11 -0400  
    Browse Code »
  • fixed youtubeface plugin
    03839741
    Josh Klontz authored
    2013-03-12 14:19:00 -0400  
    Browse Code »
  • Update ref to models submodule (hopefully correctly this time)
    d602d0b5
    Charles Otto authored
    2013-03-12 10:32:06 -0400  
    Browse Code »
  • Merge pull request #26 from biometrics/variable_output ...
    63596a8c
    Structural changes to the basic multi-template enrollment operation
    jklontz authored
    2013-03-12 07:16:02 -0700  
    Browse Code »

11 Mar, 2013
17 commits
  • Modify dbGallery to actually give deterministic output ...
    93b7a3cd
    Make a call to qSort prior to shuffling the records received by a dbGallery
    this makes the output of a dbGallery deterministic for a given query (as long
    as the seed is set).
    Charles Otto authored
    2013-03-11 23:45:28 -0400  
    Browse Code »
  • Structural changes to the basic multi-template enroll command ...
    1bf9c77c
    Handle enrollment of multiple independent templates by creating a single
    element template list from each input template, then processing these
    TemplateLists in parallel. This changes the basic operation for processing
    templates derived from a sinlge image from project(template, template) (a
    single input/single output function) to project(templateList, templateList),
    which allows for a transform to output a variable number of templates from a
    given input (e.g. a detector can output multiple templates, or a filter can
    remove templates that don't meet some criterion).
    
    The basic parallel execution code loop is implemented using
    DistributeTemplateTransform, instead of through Template::Project(list), and a DistributeTemplateTransform is automatically prepended to input enrollment
    algorithms. This avoids the problem of having to decide whether or not a split
    should take place on every call to project(templatelist), and since the
    distribute transform is just a normal transform, it can be applied more than
    once in a given algorithm (when this is desirable).
    
    Implement ExpandTransform as a basic Transform that take a template list as
    input, and expands it for its output (in project(templatelist)), due to the
    restructuring ExpandTransform no longer has to essentially mimic the
    functionality of PipeTransform to function correctly.
    
    This commit breaks binary compatibility (of saved models), so updates to the
    pre-trained face recognition and gender classification models are included.
    Charles Otto authored
    2013-03-11 23:34:30 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    b45acc40
    Scott Klum authored
    2013-03-11 20:40:10 -0400  
    Browse Code »
  • More fixes
    b862f3bd
    Scott Klum authored
    2013-03-11 20:40:04 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    7853aa2e
    Josh Klontz authored
    2013-03-11 20:39:36 -0400  
    Browse Code »
  • fixed up scripts
    7b8abf96
    Josh Klontz authored
    2013-03-11 20:39:30 -0400  
    Browse Code »
  • Plugin cleanup
    dc9fe3d1
    Scott Klum authored
    2013-03-11 20:36:46 -0400  
    Browse Code »
  • PP5 fix, file::flat() and init() tweaks
    48d8b3cc
    Scott Klum authored
    2013-03-11 19:56:17 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    8c5213c9
    Scott Klum authored
    2013-03-11 19:55:06 -0400  
    Browse Code »
  • added more scripts
    b104b8e5
    Josh Klontz authored
    2013-03-11 18:41:58 -0400  
    Browse Code »
  • fixed submodule issue introduced in a0c58d419972363717e616983b26bf2bbcde7772
    7f7362fd
    Josh Klontz authored
    2013-03-11 18:36:28 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    a28029c8
    Scott Klum authored
    2013-03-11 17:50:53 -0400  
    Browse Code »
  • Merge
    f2e360a1
    Scott Klum authored
    2013-03-11 17:50:44 -0400  
    Browse Code »
  • nec3 updates ...
    a0c58d41
    getBool("X") --> get<bool>("X",false) and appendLandmarks -->
    appendPoints
    lbestrowden authored
    2013-03-11 17:40:42 -0400  
    Browse Code »
  • started writing a new algorithm
    3021f01b
    Josh Klontz authored
    2013-03-11 17:02:10 -0400  
    Browse Code »
  • rewrote YouTubeFacesDBTransform
    9b42f0bf
    Josh Klontz authored
    2013-03-11 15:09:52 -0400  
    Browse Code »
  • added training scripts
    2e3ebad6
    Josh Klontz authored
    2013-03-11 13:42:12 -0400  
    Browse Code »