Commit 64df774691dfb2bd3abd5fcf4a01a37d4413038e

Authored by lbestrowden
1 parent f0cb8aa4

DownsampleTransform and adding myself to openbr.bib

sdk/plugins/reduce.cpp
... ... @@ -132,6 +132,8 @@ class DownsampleTransform : public UntrainableTransform
132 132  
133 133 void project(const Template &src, Template &dst) const
134 134 {
  135 + if (src.m().channels() != 1)
  136 + qFatal("Expected 1 channel matrix.");
135 137 Mat input = src.m();
136 138 Mat output(ceil((double)input.rows/k), ceil((double)input.cols/k), CV_32FC1);
137 139 for (int r=0; r<output.rows; r++) {
... ...
share/openbr/openbr.bib
1   -% Developers
  1 +%% This BibTeX bibliography file was created using BibDesk.
  2 +%% http://bibdesk.sourceforge.net/
  3 +
  4 +
  5 +%% Created for Lacey Best-Rowden at 2013-03-01 17:26:22 -0500
  6 +
  7 +
  8 +%% Saved with string encoding Unicode (UTF-8)
  9 +
  10 +
  11 +
  12 +@misc{lbestrowden,
  13 + Author = {Lacey Best-Rowden},
  14 + Date-Added = {2013-03-01 17:25:53 -0500},
  15 + Date-Modified = {2013-03-01 17:26:21 -0500},
  16 + Howpublished = {https://github.com/lbestrowden},
  17 + Title = {bestrow1 at msu.edu}}
  18 +
2 19 @misc{jklontz,
3 20 Author = {Joshua C. Klontz},
4 21 Howpublished = {https://github.com/jklontz},
... ... @@ -28,9 +45,7 @@
28 45 Author = {Charles A. Otto},
29 46 Howpublished = {https://github.com/caotto},
30 47 Title = {ottochar at gmail.com}}
31   -
32 48  
33   -% Software
34 49 @misc{OpenBR,
35 50 Author = {Joshua C. Klontz and Dr. Mark J. Burge},
36 51 Title = {{OpenBR} - {Open} {Biometric} {Recognition}},
... ... @@ -66,8 +81,6 @@
66 81 Title = {PittPatt {SDK} 5.2.2},
67 82 Year = {2011}}
68 83  
69   -
70   -% Datasets
71 84 @misc{GBU,
72 85 Author = {NIST},
73 86 Howpublished = {www.nist.gov/itl/iad/ig/focs.cfm},
... ... @@ -80,8 +93,6 @@
80 93 Title = {{NIST} Special Database 32 - Multiple Encounter Dataset ({MEDS})},
81 94 Year = {2011}}
82 95  
83   -
84   -% Papers
85 96 @inproceedings{belhumeur11,
86 97 Author = {Belhumeur, P.N. and Jacobs, D.W. and Kriegman, D.J. and Kumar, N.},
87 98 Booktitle = {Computer Vision and Pattern Recognition (CVPR), 2011 IEEE Conference on},
... ... @@ -114,13 +125,13 @@
114 125 Title = {Spectrally Sampled Structural Subspace Features ({4SF})},
115 126 Year = {2011}}
116 127  
117   -@inproceedings{klare12,
118   - Author={Klare, B.F. and Jain, A.K.},
119   - Booktitle={Biometrics: Theory, Applications and Systems (BTAS), 2012 IEEE Fifth International Conference on},
120   - Title={Face recognition: Impostor-based measures of uniqueness and quality},
121   - Year={2012},
122   - Month={sept.},
123   - Pages={237-244}}
  128 +@inproceedings{klare12,
  129 + Author = {Klare, B.F. and Jain, A.K.},
  130 + Booktitle = {Biometrics: Theory, Applications and Systems (BTAS), 2012 IEEE Fifth International Conference on},
  131 + Month = {sept.},
  132 + Pages = {237-244},
  133 + Title = {Face recognition: Impostor-based measures of uniqueness and quality},
  134 + Year = {2012}}
124 135  
125 136 @article{meyers08,
126 137 Author = {Meyers, E. and Wolf, L.},
... ... @@ -162,13 +173,13 @@
162 173 Title = {Spectral Hashing},
163 174 Year = {2008}}
164 175  
165   -@inproceedings{wolf11,
166   - author={Wolf, L. and Hassner, T. and Maoz, I.},
167   - booktitle={Computer Vision and Pattern Recognition (CVPR), 2011 IEEE Conference on},
168   - title={Face recognition in unconstrained videos with matched background similarity},
169   - year={2011},
170   - month={june},
171   - pages={529-534}}
  176 +@inproceedings{wolf11,
  177 + Author = {Wolf, L. and Hassner, T. and Maoz, I.},
  178 + Booktitle = {Computer Vision and Pattern Recognition (CVPR), 2011 IEEE Conference on},
  179 + Month = {june},
  180 + Pages = {529-534},
  181 + Title = {Face recognition in unconstrained videos with matched background similarity},
  182 + Year = {2011}}
172 183  
173 184 @mastersthesis{zauner10,
174 185 Author = {Zauner, C.},
... ...