Commit 5a31eb1973ddeb6247edffc87c1470605c68cc4e
Merge pull request #341 from biometrics/revertBinRename
Revert "Rename histbin to bin"
Showing
1 changed file
with
3 additions
and
3 deletions
openbr/plugins/imgproc/bin.cpp renamed to openbr/plugins/imgproc/histbin.cpp
| @@ -26,7 +26,7 @@ namespace br | @@ -26,7 +26,7 @@ namespace br | ||
| 26 | * \brief Quantizes the values into bins. | 26 | * \brief Quantizes the values into bins. |
| 27 | * \author Josh Klontz \cite jklontz | 27 | * \author Josh Klontz \cite jklontz |
| 28 | */ | 28 | */ |
| 29 | -class BinTransform : public UntrainableTransform | 29 | +class HistBinTransform : public UntrainableTransform |
| 30 | { | 30 | { |
| 31 | Q_OBJECT | 31 | Q_OBJECT |
| 32 | Q_PROPERTY(float min READ get_min WRITE set_min RESET reset_min STORED false) | 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,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 | } // namespace br | 80 | } // namespace br |
| 81 | 81 | ||
| 82 | -#include "imgproc/bin.moc" | 82 | +#include "imgproc/histbin.moc" |