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>
namespace Image {
class BillDetection {
private:
public:
static
namespace BillDetection {
cv::Mat highlightBill(cv::Mat in)
{
cv::Mat gray;
@ -77,7 +73,7 @@ namespace Image {
return out;
}
};
}
}
#endif