diff --git "a/PhotoShop Algorithm/PS\351\251\254\350\265\233\345\205\213\347\256\227\346\263\225.cpp" "b/PhotoShop Algorithm/PS\351\251\254\350\265\233\345\205\213\347\256\227\346\263\225.cpp" index fc0838d..d8d3ad8 100644 --- "a/PhotoShop Algorithm/PS\351\251\254\350\265\233\345\205\213\347\256\227\346\263\225.cpp" +++ "b/PhotoShop Algorithm/PS\351\251\254\350\265\233\345\205\213\347\256\227\346\263\225.cpp" @@ -1,4 +1,4 @@ -Mat Masic(Mat src, int Ksize) { +Mat Mosaic(Mat src, int Ksize) { int offset = (Ksize - 1) / 2; int row = src.rows; int col = src.cols; @@ -18,4 +18,4 @@ Mat Masic(Mat src, int Ksize) { } } return dst; -} \ No newline at end of file +}