LeetCode210578图片平滑器
Posted 程序彤
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了LeetCode210578图片平滑器相关的知识,希望对你有一定的参考价值。
图片平滑器
public static int[][] method(int[][] met) {
int R = met.length, C = met[0].length;
int[][] ans = new int[R][C];
for (int r = 0; r < R; ++r)
for (int c = 0; c < C; ++c) {
int count = 0;
for (int nr = r-1; nr <= r+1; ++nr)
for (int nc = c-1; nc <= c+1; ++nc) {
if (0 <= nr && nr < R && 0 <= nc && nc < C) {
ans[r][c] += met[nr][nc];
count++;
}
}
ans[r][c] /= count;
}
return ans;
}
以上是关于LeetCode210578图片平滑器的主要内容,如果未能解决你的问题,请参考以下文章
[LeetCode] Image Smoother 图片平滑器
leetcode 661. 图片平滑器(Image Smoother)