检测实时Android摄像头预览的颜色代码

时间:2015-05-28 17:20:55

标签: android colors android-camera color-picker

我想在摄像机预览进行时检测图像的颜色代码(实时流图像)。我想开发像ColorGrab android应用程序一样的示例android应用程序。请查找相同的附件截图。

如何制作演示程序应用程序,只需指向相机并显示为该颜色的十六进制代码即可捕获和识别颜色。

任何帮助将不胜感激。谢谢你的时间。

enter image description here

3 个答案:

答案 0 :(得分:2)

https://play.google.com/store/apps/details?id=com.raj.colorwalls

看看这个应用程序网址,它应该给你一些想法。它使用此代码:

int frameHeight1 = camera.getParameters().getPreviewSize().height;
    int frameWidth1 = camera.getParameters().getPreviewSize().width;
    int rgb1[] = new int[frameWidth * frameHeight];
    decodeYUV420SP(rgb1, data, frameWidth, frameHeight);
    Bitmap bmp1 = Bitmap.createBitmap(rgb, frameWidth1, frameHeight1, Config.ARGB_8888);
    int pixel = bmp1.getPixel( x,y );
    int redValue1 = Color.red(pixel);
    int blueValue1 = Color.blue(pixel);
    int greenValue1 = Color.green(pixel);
    int thiscolor1 = Color.rgb(redValue1, greenValue1, blueValue1);

enter image description here

答案 1 :(得分:0)

这应该是你的出发点

从触摸的图像像素获取颜色

targetImage.setOnTouchListener(new ImageView.OnTouchListener(){     
@Override   
public boolean onTouch(View v, MotionEvent event) {
    // TODO Auto-generated method stub       
    int x=0;
    int y=0;
    textView.setText("Touch coordinates : " +       
    String.valueOf(event.getX()) + "x" + String.valueOf(event.getY()));
    ImageView imageView = ((ImageView)v);
    Bitmap bitmap = ((BitmapDrawable)imageView.getDrawable()).getBitmap();
    int pixel = bitmap.getPixel(x,y);
    int redValue = Color.red(pixel);
    int blueValue = Color.blue(pixel);
    int greenValue = Color.green(pixel);


    return true;    }     
});

您将获得RGB颜色代码。

来自How to Get Pixel Colour in Android?

答案 2 :(得分:0)

你应该尝试这个,其中x和y是像素位置

    int frameHeight = camera.getParameters().getPreviewSize().height;
    int frameWidth = camera.getParameters().getPreviewSize().width;
    int rgb[] = new int[frameWidth * frameHeight];
    decodeYUV420SP(rgb, data, frameWidth, frameHeight);
    Bitmap bmp = Bitmap.createBitmap(rgb, frameWidth, frameHeight, Config.ARGB_8888);
    int pixel = bmp.getPixel( x,y );
    int redValue = Color.red(pixel);
    int blueValue = Color.blue(pixel);
    int greenValue = Color.green(pixel);
    int thiscolor = Color.rgb(redValue, greenValue, blueValue);