0

次のコードを使用して、通常の画像をグレースケールおよびセピア色の画像に変換しました。

セピア色変換用:

public static Bitmap createSepiaToningEffect(Bitmap src, int depth,
            double red, double green, double blue) {
        // image size
        int width = src.getWidth();
        int height = src.getHeight();
        // create output bitmap
        Bitmap bmOut = Bitmap.createBitmap(width, height, src.getConfig());
        // constant grayscale
        final double GS_RED = 0.3;
        final double GS_GREEN = 0.59;
        final double GS_BLUE = 0.11;
        // color information
        int A, R, G, B;
        int pixel;

        // scan through all pixels
        for (int x = 0; x < width; ++x) {
            for (int y = 0; y < height; ++y) {
                // get pixel color
                pixel = src.getPixel(x, y);
                // get color on each channel
                A = Color.alpha(pixel);
                R = Color.red(pixel);
                G = Color.green(pixel);
                B = Color.blue(pixel);
                // apply grayscale sample
                B = G = R = (int) (GS_RED * R + GS_GREEN * G + GS_BLUE * B);

                // apply intensity level for sepid-toning on each channel
                R += (depth * red);
                if (R > 255) {
                    R = 255;
                }

                G += (depth * green);
                if (G > 255) {
                    G = 255;
                }

                B += (depth * blue);
                if (B > 255) {
                    B = 255;
                }

                // set new pixel color to output image
                bmOut.setPixel(x, y, Color.argb(A, R, G, B));
            }
        }

        // return final image
        return bmOut;
    }

上記のコードは正常に機能しますが、問題は時間がかかることです(60秒以上)。どうすれば時間の消費を減らすことができますか。画像をグレースケールに変換すると、2秒もかかりません。誰かが私がこの問題を解決するのを手伝ってくれますか?

4

1 に答える 1

1

ndk を使用して、この git リポジトリ git://github.com/ruckus/android-image-filter-ndk.git を参照できます。

于 2012-05-16T11:58:49.190 に答える