Commit 5a31eb1973ddeb6247edffc87c1470605c68cc4e

Authored by Brendan K
2 parents 44b74ef6 84871c51

Merge pull request #341 from biometrics/revertBinRename

Revert "Rename histbin to bin"
openbr/plugins/imgproc/bin.cpp renamed to openbr/plugins/imgproc/histbin.cpp
... ... @@ -26,7 +26,7 @@ namespace br
26 26 * \brief Quantizes the values into bins.
27 27 * \author Josh Klontz \cite jklontz
28 28 */
29   -class BinTransform : public UntrainableTransform
  29 +class HistBinTransform : public UntrainableTransform
30 30 {
31 31 Q_OBJECT
32 32 Q_PROPERTY(float min READ get_min WRITE set_min RESET reset_min STORED false)
... ... @@ -75,8 +75,8 @@ class BinTransform : public UntrainableTransform
75 75 }
76 76 };
77 77  
78   -BR_REGISTER(Transform, BinTransform)
  78 +BR_REGISTER(Transform, HistBinTransform)
79 79  
80 80 } // namespace br
81 81  
82   -#include "imgproc/bin.moc"
  82 +#include "imgproc/histbin.moc"
... ...