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
30 Oct, 2013
8 commits
  • played around with weighing the HoG vectors based on magnitude, didn't see much of an impact
    d723e2ca
    Josh Klontz authored
    2013-10-30 13:57:43 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    4e02e315
    Brendan Klare authored
    2013-10-30 11:03:35 -0400  
    Browse Code »
  • Pedestrian detection baseline scripts and sigests
    f45eff41
    Brendan Klare authored
    2013-10-30 11:01:53 -0400  
    Browse Code »
  • Merge pull request #122 from biometrics/plot_enhancements ...
    fd580382
    Plot enhancements
    jklontz authored
    2013-10-30 07:41:47 -0700  
    Browse Code »
  • Sigsets for the INRIA database
    05806674
    Brendan Klare authored
    2013-10-30 10:41:36 -0400  
    Browse Code »
  • Removed debug statement
    f4f6f914
    Scott Klum authored
    2013-10-30 10:09:20 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr into plot_enhancements
    818bf25f
    Scott Klum authored
    2013-10-30 10:03:53 -0400  
    Browse Code »
  • Added cmcOpts file to simplify and compartmentalize plot options
    87543539
    Scott Klum authored
    2013-10-30 10:02:08 -0400  
    Browse Code »

29 Oct, 2013
2 commits
  • Speed ups and minor tweaks to sliding window
    c1dcf40e
    Brendan Klare authored
    2013-10-29 22:36:45 -0400  
    Browse Code »
  • Add INRIAPerson to data/README
    0d5075e0
    Austin Blanton authored
    2013-10-29 13:06:11 -0400  
    Browse Code »

28 Oct, 2013
1 commit
  • Moving positive and negative sample extraction from SlidingWindow to BuildScales… ...
    58f92519
    … to keep scale consistent
    Brendan Klare authored
    2013-10-28 23:35:50 -0400  
    Browse Code »

27 Oct, 2013
2 commits
  • Merge branch 'windowSpeedup' ...
    598a4160
    * Store confidence values in the Mat instead of the QMap.
    * Negative features are resized to the detector window size
    Brendan Klare authored
    2013-10-27 21:15:05 -0400  
    Browse Code »
  • Speedup for detection and improved negative feature sampling
    d0e416fc
    Brendan Klare authored
    2013-10-27 21:14:19 -0400  
    Browse Code »

26 Oct, 2013
5 commits
  • More nonsense to get around Qt's one object one thread policies ...
    2488533f
    Currently, no QtWarnings generated on windows, how exciting.
    Charles Otto authored
    2013-10-26 16:22:36 -0700  
    Browse Code »
  • Use dedicated threads for communcation for each ProcessWrapper instance ...
    b3411eda
    Although we do have to use exactly 1 thread for all operations on a given
    socket (at least on windows...), it doesn't have to be the main thread.
    
    Even odds if this will break windows support in some unforseen way.
    Charles Otto authored
    2013-10-26 13:39:14 -0400  
    Browse Code »
  • Clean up some warnings
    788722e1
    Charles Otto authored
    2013-10-26 13:18:03 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    85bf95aa
    Charles Otto authored
    2013-10-26 02:36:04 -0700  
    Browse Code »
  • ProcessWrapper round 2 ...
    ba5f51af
    In a shocking turn of events, Qt is annoying, and not particularly
    consistent across platforms.
    
    Lot of not particularly intelligent business with signals to get things to
    execute on the main thread.
    I would rather not even use the event driven interfaces to
    QLocalServer/QLocalSocket but sadly it seems that on windows even if we
    try and use the blocking calls, we are still required to use using exactly one
    thread per object. Of course that makes sense since obviously we are writing
    a simple event-driven GUI application.
    Charles Otto authored
    2013-10-26 02:28:17 -0700  
    Browse Code »

25 Oct, 2013
1 commit
  • fixed #120
    ea858027
    Josh Klontz authored
    2013-10-25 09:53:14 -0400  
    Browse Code »

24 Oct, 2013
4 commits
  • fixed linker error due to WorkerProcess::mainLoop() definition not being in br namespace
    885c3ec1
    Josh Klontz authored
    2013-10-24 10:51:57 -0400  
    Browse Code »
  • Merge pull request #119 from biometrics/shadow_process ...
    535886af
    Add a wrapper transform that runs a child transform in a separate process
    jklontz authored
    2013-10-24 07:44:39 -0700  
    Browse Code »
  • Silence a couple integer comparison warnings
    115566b0
    Charles Otto authored
    2013-10-24 10:17:24 -0400  
    Browse Code »
  • Rename a function
    a9716e86
    Charles Otto authored
    2013-10-24 10:16:43 -0400  
    Browse Code »

23 Oct, 2013
17 commits
  • First pass at a transforms that runs a sub-transform in a different process ...
    230eb853
    The primary addition is ProcessWrapperTransform, which takes a transform as a
    child, and creates a worker process that runs that transform. The main point of
    this is to handle cases where we interface with non-threadsafe code, and need
    to isolate transforms in their own processes if we want to use multiple copies
    of them.
    
    Inter-process communication is handled using QLocalServer/QLocalSocket, the
    actual worker processes are additional instance of br, which does mean this
    bleeds out to the public API to an unfortunate extent.
    
    Initial trvial tests seem promising, but generally we can expect performance
    to degrade if larger amounts of data are transfered, ideally we should do
    ProcessWrapper(Open+FeatureExtraction), so the data transfered to the worker
    is an image name, and the data transfered from the worker is a feature vector.
    Charles Otto authored
    2013-10-23 23:21:01 -0400  
    Browse Code »
  • Final mistake for trivial "conf" change
    0d513134
    Brendan Klare authored
    2013-10-23 19:16:16 -0400  
    Browse Code »
  • Fix mistake
    fbaffac9
    Brendan Klare authored
    2013-10-23 19:10:38 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    25358781
    Brendan Klare authored
    2013-10-23 18:56:50 -0400  
    Browse Code »
  • Restored filter to origin state
    2cc56616
    sklum authored
    2013-10-23 16:54:07 -0700  
    Browse Code »
  • Restored filter to origin state
    23836e72
    sklum authored
    2013-10-23 16:49:58 -0700  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr
    3cc269a2
    sklum authored
    2013-10-23 16:42:24 -0700  
    Browse Code »
  • "conf" to "Confidence" for detection to be consistent br::File
    0e38f952
    Brendan Klare authored
    2013-10-23 18:56:27 -0400  
    Browse Code »
  • Default br detectors to take all detections
    0fa39d7f
    Brendan Klare authored
    2013-10-23 18:30:02 -0400  
    Browse Code »
  • Merge pull request #118 from biometrics/decouple_variantlist ...
    9e0ebdd3
    Decouple variantlist
    sklum authored
    2013-10-23 13:00:26 -0700  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr into plot_enhancements
    7de75729
    Scott Klum authored
    2013-10-23 14:40:21 -0400  
    Browse Code »
  • Text size, thickness, yLimits support added
    bf635432
    Scott Klum authored
    2013-10-23 14:38:14 -0400  
    Browse Code »
  • Added elapsed message
    b30ed868
    sklum authored
    2013-10-23 10:56:00 -0700  
    Browse Code »
  • Fixed string comparison
    67718638
    Scott Klum authored
    2013-10-23 13:44:05 -0400  
    Browse Code »
  • Cleaned up stasm
    f450e90b
    Scott Klum authored
    2013-10-23 13:34:39 -0400  
    Browse Code »
  • Decoupled toQVariantList
    4c12d6be
    Scott Klum authored
    2013-10-23 13:30:04 -0400  
    Browse Code »
  • Merge branch 'master' of https://github.com/biometrics/openbr into restrict_metadata ...
    9602dc4f
    Conflicts:
    	openbr/core/qtutils.cpp
    	openbr/plugins/landmarks.cpp
    Scott Klum authored
    2013-10-23 13:29:17 -0400  
    Browse Code »