merge with dev and fixed some bugs

This commit is contained in:
Desmis
2019-10-27 17:09:53 +01:00
19 changed files with 1088 additions and 1607 deletions

View File

@@ -23,6 +23,6 @@ enum eGaussType {GAUSS_STANDARD, GAUSS_MULT, GAUSS_DIV};
static constexpr auto GAUSS_SKIP = 0.25;
void gaussianBlur(float** src, float** dst, const int W, const int H, const double sigma, float *buffer = nullptr, eGaussType gausstype = GAUSS_STANDARD, float** buffer2 = nullptr);
void gaussianBlur(float** src, float** dst, const int W, const int H, const double sigma, bool useBoxBlur = false, eGaussType gausstype = GAUSS_STANDARD, float** buffer2 = nullptr);
#endif