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 Apr, 2013
2 commits
  • removed extraneous debug statement
    eb4e8176
    Josh Klontz authored
    2013-04-08 15:41:47 -0400  
    Browse Code »
  • refactored to make more robust
    b4fe0aa3
    Josh Klontz authored
    2013-04-08 15:38:04 -0400  
    Browse Code »

07 Apr, 2013
10 commits
  • preliminary support for ARFF file format
    ae51527d
    Josh Klontz authored
    2013-04-07 19:16:15 -0400  
    Browse Code »
  • changed it so keypoints are drawn correctly
    379d0fde
    Josh Klontz authored
    2013-04-07 16:04:21 -0400  
    Browse Code »
  • removed the distinction between named and unnamed keypoints in DrawTransform
    3f27d51b
    Josh Klontz authored
    2013-04-07 15:53:42 -0400  
    Browse Code »
  • made csvGallery read mirror write format
    06560807
    Josh Klontz authored
    2013-04-07 15:18:15 -0400  
    Browse Code »
  • csvGallery now returns class string label when available
    25d9d89a
    Josh Klontz authored
    2013-04-07 15:01:00 -0400  
    Browse Code »
  • fixed SVMTransform for multiclass learning
    813a80e2
    Josh Klontz authored
    2013-04-07 14:46:39 -0400  
    Browse Code »
  • refactored KMeans transform
    d375cd4a
    Josh Klontz authored
    2013-04-07 14:46:22 -0400  
    Browse Code »
  • actually fixed #44
    2d37a7bc
    Josh Klontz authored
    2013-04-07 12:53:32 -0400  
    Browse Code »
  • fixed #44
    4557a274
    Josh Klontz authored
    2013-04-07 12:13:26 -0400  
    Browse Code »
  • fixed #43
    083a18b0
    Josh Klontz authored
    2013-04-07 11:36:38 -0400  
    Browse Code »

06 Apr, 2013
9 commits
  • fixed ShowFaceDetection
    c0e92b48
    Josh Klontz authored
    2013-04-06 21:27:54 -0400  
    Browse Code »
  • improved rawFormat
    6697de73
    Josh Klontz authored
    2013-04-06 17:03:08 -0400  
    Browse Code »
  • Merge pull request #42 from biometrics/gui_switch ...
    565d7110
    Add a global property controlling whether or not GUI functions are enabled
    jklontz authored
    2013-04-06 13:04:16 -0700  
    Browse Code »
  • Remove a pointless try/catch, add a bool use_gui parameter to br_initialize ...
    d1f0e835
    Qt prefers calling abort to throwing exceptions, so there's no use trying to
    recover from a failed attempt to create a QApplication. Add an optional bool
    use_gui paramter to br_intialize in case people want to set that value without
    going through the command line arguments.
    Charles Otto authored
    2013-04-06 15:57:27 -0400  
    Browse Code »
  • Add a global property controlling whether or not GUI functions are enabled
    a8e375a9
    Charles Otto authored
    2013-04-06 14:53:21 -0400  
    Browse Code »
  • NEC Latent tweaks
    bcb54394
    Josh Klontz authored
    2013-04-06 14:07:48 -0400  
    Browse Code »
  • Merge pull request #41 from biometrics/show_purge ...
    d2543937
    Rename Show2 to Show, remove special casing of Parallelism=0 (not ready to merge yet)
    jklontz authored
    2013-04-06 10:47:43 -0700  
    Browse Code »
  • Add comments on currently disabled transforms ...
    f2ad581e
    Also, remove some extraneous curly braces.
    Charles Otto authored
    2013-04-06 13:17:51 -0400  
    Browse Code »
  • Simplify handling of parallelism ...
    26859603
    Default parallelism to IdealThreadCount+1, remove checks for input parallelism
    > IdealThreadCount, since we find that a higher thread count can help in some
    circumstances.
    
    Don't use release/reserve thread to increase the size of the thread pool in
    init, instead just set the max pool size directly.
    Charles Otto authored
    2013-04-06 12:59:58 -0400  
    Browse Code »

05 Apr, 2013
17 commits
  • Drop special casing of parallelism=0 ...
    07d5f49d
    Drop most special casing of parallelism=0, if parallelism=0 is received, set
    the max number of threads to 1, and go through the same code as when more
    threads are available.
    
    Some outstanding issues, the following transforms are blocked out since they
    aren't consistent with this change:
    EditTransform
    ElicitMetaDataTransform
    StasmTransform
    
    In stasm's case, a global mutex must be used, similarly ElicitMetaData reads
    from stdin, and would also require a global lock. EditTransform can probably be
    reimplemented through Qt similarly to Show
    Charles Otto authored
    2013-04-05 19:30:27 -0400  
    Browse Code »
  • Remove original Show transform, rename Show2 to Show ...
    190b8755
    Also, change the default waitKey value to be consistent with original
    Show
    Charles Otto authored
    2013-04-05 19:03:32 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    30d1f4d5
    Josh Klontz authored
    2013-04-05 16:11:27 -0400  
    Browse Code »
  • NECLatent updates
    d589210f
    Josh Klontz authored
    2013-04-05 16:11:15 -0400  
    Browse Code »
  • Use a worse variable name
    dc3c6e14
    Charles Otto authored
    2013-04-05 13:41:01 -0400  
    Browse Code »
  • Don't add the same GUIProxy twice as an event filter
    97f9163b
    Charles Otto authored
    2013-04-05 13:38:28 -0400  
    Browse Code »
  • Don't make twice as many copies of things as necessary ...
    b50a5249
    When doing a const project, using the default CompositeTransform implementation
    (with time-varying child transforms), don't make twice as many copies of things
    as necessary.
    
    Also, allow stream to use the CompositeTransform const project method.
    Charles Otto authored
    2013-04-05 13:35:02 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    bc7d497f
    Scott Klum authored
    2013-04-05 13:26:48 -0400  
    Browse Code »
  • Updated QStringList parsing to match setProperty convention
    4b7f306a
    Scott Klum authored
    2013-04-05 13:26:42 -0400  
    Browse Code »
  • added File::getBool default value
    7813962d
    Josh Klontz authored
    2013-04-05 13:05:51 -0400  
    Browse Code »
  • QStringList from flat initialization fixed
    ef23e1ab
    Scott Klum authored
    2013-04-05 12:37:20 -0400  
    Browse Code »
  • Fixed QStringList parsing bug.
    016d00e3
    Scott Klum authored
    2013-04-05 11:05:33 -0400  
    Browse Code »
  • Removed some debugging changes
    7f155c67
    Scott Klum authored
    2013-04-05 10:44:00 -0400  
    Browse Code »
  • Fixed QStringList init parsing bug
    bab7e772
    Scott Klum authored
    2013-04-05 10:41:20 -0400  
    Browse Code »
  • Fixed local gui
    fb8c36de
    Scott Klum authored
    2013-04-05 10:37:46 -0400  
    Browse Code »
  • Simplify closing video sources ...
    ae079eb7
    Now that we are explicitly cloning every frame that we get, releasing
    VideoCaptures no longer causes segfaults.
    Charles Otto authored
    2013-04-05 09:05:29 -0400  
    Browse Code »
  • Handle hiding windows a little more intelligently ...
    2489cfc9
    We can just send a close event, then we don't have to worry about new display
    events showing the window after we hid it.
    Charles Otto authored
    2013-04-05 09:05:29 -0400  
    Browse Code »

04 Apr, 2013
2 commits
  • Added some crap
    e5fb7e7e
    Scott Klum authored
    2013-04-04 23:58:14 -0400  
    Browse Code »
  • logo iteration
    45e51f44
    Josh Klontz authored
    2013-04-04 23:48:33 -0400  
    Browse Code »