reduce class usage

This commit is contained in:
Dennis Eichhorn 2022-11-20 15:47:40 +01:00
parent 200a154874
commit 382ef60919

View File

@ -15,11 +15,7 @@
#include <vector> #include <vector>
namespace Image { namespace Image {
class BillDetection { namespace BillDetection {
private:
public:
static
cv::Mat highlightBill(cv::Mat in) cv::Mat highlightBill(cv::Mat in)
{ {
cv::Mat gray; cv::Mat gray;
@ -77,7 +73,7 @@ namespace Image {
return out; return out;
} }
}; }
} }
#endif #endif