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
  • sdk
18 Mar, 2013
1 commit
  • Merge branch 'master' of https://github.com/biometrics/openbr
    8748d391
    Scott Klum authored
    2013-03-18 10:14:05 -0400  
    Browse Dir »

17 Mar, 2013
13 commits
  • progress on Bayesian quantization
    89c438fe
    Josh Klontz authored
    2013-03-17 23:32:49 -0400  
    Browse Dir »
  • templatized some functions
    85e03bed
    Josh Klontz authored
    2013-03-17 22:15:28 -0400  
    Browse Dir »
  • implemented RootNorm transform
    9f15f251
    Josh Klontz authored
    2013-03-17 21:48:33 -0400  
    Browse Dir »
  • plugin maintainance
    772439c4
    Josh Klontz authored
    2013-03-17 21:20:59 -0400  
    Browse Dir »
  • refactored training feedback
    20e3c75f
    Josh Klontz authored
    2013-03-17 20:49:17 -0400  
    Browse Dir »
  • threading improvments
    092cef71
    Josh Klontz authored
    2013-03-17 20:27:35 -0400  
    Browse Dir »
  • fixed potential indexing into an empty list
    0362d902
    Josh Klontz authored
    2013-03-17 19:07:56 -0400  
    Browse Dir »
  • Fix a crash in Show2 transform ...
    cd6ad90a
    Send a deep copy of the current image to the GUI thread, copy must be called
    explicitly or a shallow copy will be done, and subsequent modifications to the
    buffer will cause crashes when the GUI thread tries to draw it.
    Charles Otto authored
    2013-03-17 18:02:31 -0400  
    Browse Dir »
  • Add support for multi-threaded execution of time invariant stages of a stream
    0fc6c503
    Charles Otto authored
    2013-03-17 18:02:31 -0400  
    Browse Dir »
  • more plugin development
    14026845
    Josh Klontz authored
    2013-03-17 15:02:35 -0400  
    Browse Dir »
  • bug fix
    cff9e644
    Josh Klontz authored
    2013-03-17 12:24:33 -0400  
    Browse Dir »
  • more future refactoring
    f0dc2607
    Josh Klontz authored
    2013-03-17 12:15:14 -0400  
    Browse Dir »
  • refactored future waiting
    952f60e6
    Josh Klontz authored
    2013-03-17 11:59:43 -0400  
    Browse Dir »

16 Mar, 2013
14 commits
  • doc tweaks
    521999f4
    Josh Klontz authored
    2013-03-16 23:32:56 -0400  
    Browse Dir »
  • the worst bug in the world
    6679e375
    Josh Klontz authored
    2013-03-16 23:26:18 -0400  
    Browse Dir »
  • bug fix introduced by previous commit
    6b43ddb5
    Josh Klontz authored
    2013-03-16 22:00:10 -0400  
    Browse Dir »
  • hid QCoreApplication from API
    2d3b8cd5
    Josh Klontz authored
    2013-03-16 21:42:16 -0400  
    Browse Dir »
  • fixed edge case
    2a792b66
    Josh Klontz authored
    2013-03-16 21:22:25 -0400  
    Browse Dir »
  • maintainance
    f849ddad
    Josh Klontz authored
    2013-03-16 20:47:33 -0400  
    Browse Dir »
  • Update buffer classes slightly ...
    d43c8217
    Simplify SingleBuffer since controlling the total amount of frames being
    processed works quite well.
    Add a double-buffer scheme, which leads to a really marginal performance
    improvement (but I think it's cool).
    Charles Otto authored
    2013-03-16 19:30:21 -0400  
    Browse Dir »
  • Buffer management via scarcity ...
    46985ff5
    Rather than putting limits on the number of items in the buffers of individual
    processing stages of a stream, put a limit on the total number of frames
    actively being processed by the stream.
    Charles Otto authored
    2013-03-16 18:01:46 -0400  
    Browse Dir »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    e9a774f1
    Josh Klontz authored
    2013-03-16 17:45:26 -0400  
    Browse Dir »
  • fixed embedded builds
    d8923cc4
    Josh Klontz authored
    2013-03-16 17:45:20 -0400  
    Browse Dir »
  • windows compile fix
    fe556614
    Josh Klontz authored
    2013-03-16 16:03:07 -0400  
    Browse Dir »
  • 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 Dir »
  • 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 Dir »
  • reintroduced product quantization
    5e02aadf
    Josh Klontz authored
    2013-03-16 11:15:14 -0400  
    Browse Dir »

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

14 Mar, 2013
4 commits
  • Merge branch 'master' of https://github.com/biometrics/openbr
    6bceaac2
    Scott Klum authored
    2013-03-14 20:47:06 -0400  
    Browse Dir »
  • more code
    1c82d1ec
    Josh Klontz authored
    2013-03-14 18:00:50 -0400  
    Browse Dir »
  • more new transforms
    590bb5d8
    Josh Klontz authored
    2013-03-14 16:48:01 -0400  
    Browse Dir »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    e5998690
    Scott Klum authored
    2013-03-14 12:04:45 -0400  
    Browse Dir »

13 Mar, 2013
3 commits
  • added more transforms
    5f37e44f
    Josh Klontz authored
    2013-03-13 22:54:55 -0400  
    Browse Dir »
  • minor fix
    94f8e680
    Josh Klontz authored
    2013-03-13 12:35:44 -0400  
    Browse Dir »
  • 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 Dir »