我正在使用此算法过滤andriod中的图像。
http://xjaphx.wordpress.com/2011/06/22/image-processing-convolution-matrix/
但是图像并不像预期的那样,在那里我可以找到其他方法来做到这一点。你看到应用程序已经这样做了,速度很快,这个算法太慢了。
问候
答案 0 :(得分:2)
我最近在那里发布了你试过的代码的更快版本,你应该试一试。
顺便说一下,你对句子图像的意思是什么?也许你只是使用了错误的矩阵;你可以找到一些矩阵示例here。
以下是您请求的示例。如果您不需要缩放/偏移像素颜色,则应添加convolute
的不同实现,而不使用这些参数和相关的不必要计算。
class Convolution {
private static Bitmap convolute(Bitmap bmp, Matrix mat, float factor, int offset) {
/* ... */
}
private static Matrix getEdgeEnhanceMatrix() {
Matrix m = new Matrix();
m.setValues(new float[] {
0, 0, 0,
-1, 1, 0,
0, 0, 0
});
return m;
}
// the simple way
public static Bitmap edgeEnhance1(Bitmap bmp) {
return convolute(bmp, getEdgeEnhanceMatrix(), 1f, 0);
}
// if you want to apply filter to border pixels
// warning: really memory consuming
public static Bitmap edgeEnhance2(Bitmap bmp, int bgColor) {
// create a bigger canvas
Bitmap bigger = Bitmap.createBitmap(bmp.getWidth() + 2, bmp.getHeight() + 2, bmp.getConfig());
Canvas cBigger = new Canvas(bigger);
// paint background
cBigger.drawColor(bgColor);
// draw the bmp you want to manipulate from (1,1)
cBigger.drawBitmap(bmp, 1, 1, null);
// compute convolution
bigger = convolute(bigger, getEdgeEnhanceMatrix(), 1f, 0);
// create the result and project the convolution at (-1,-1)
Bitmap rt = Bitmap.createBitmap(bmp.getWidth(), bmp.getHeight(), bmp.getConfig());
Canvas cRt = new Canvas(rt);
cRt.drawBitmap(bigger, -1, -1, null);
return rt;
}
}
答案 1 :(得分:-2)
我正在使用此公式按照其扩展程序过滤图片
class FileExtensionFilter implements FilenameFilter {
public boolean accept(File dir, String name) {
return (name.endsWith(".png") || name.endsWith(".PNG"));
}
如果您从SD卡中取出它,请告诉我。我有代码。