Commit 7e1cff9ce5482b358bcfed89d02b6d011bd17f33
1 parent
3b5ddba6
Rename histbin to bin
Showing
1 changed file
with
3 additions
and
3 deletions
openbr/plugins/imgproc/histbin.cpp renamed to openbr/plugins/imgproc/bin.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 HistBinTransform : public UntrainableTransform | |
| 29 | +class BinTransform : 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 HistBinTransform : public UntrainableTransform |
| 75 | 75 | } |
| 76 | 76 | }; |
| 77 | 77 | |
| 78 | -BR_REGISTER(Transform, HistBinTransform) | |
| 78 | +BR_REGISTER(Transform, BinTransform) | |
| 79 | 79 | |
| 80 | 80 | } // namespace br |
| 81 | 81 | |
| 82 | -#include "imgproc/histbin.moc" | |
| 82 | +#include "imgproc/bin.moc" | ... | ... |