我正在android中进行图像处理,例如模糊效果和图像上的圆圈。
我的目标是在特定点及其周围模糊图像。我可以使用高斯模糊和卷积矩阵对整个图像进行模糊效果。
public static Bitmap applyGaussianBlur(Bitmap src) {
double[][] GaussianBlurConfig = new double[][] { { 1, 2, 1 }, { 2, 4, 2 }, { 1, 2, 1 } };
ConvolutionMatrix convMatrix = new ConvolutionMatrix(3);
convMatrix.applyConfig(GaussianBlurConfig);
convMatrix.Factor = 16;
convMatrix.Offset = 0;
return ConvolutionMatrix.computeConvolution3x3(src, convMatrix);
}
谁能给我一个想法,在图像中的特定点做模糊效果?