From e20a7aa0df975694237e7ad3a8c23d637ebe6646 Mon Sep 17 00:00:00 2001 From: LittleApple <148928493+LittleApple-fp16@users.noreply.github.com> Date: Tue, 11 Jun 2024 10:35:21 +0800 Subject: [PATCH] rename 'masic' --- ...1\254\350\265\233\345\205\213\347\256\227\346\263\225.cpp" | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) 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 +}