Android OpenCV Create Rect

时间:2013-12-17 19:33:15

标签: java android c++ opencv

晚上好,需要一些帮助,用openCV获得方形区域的rgb像素 我试图从屏幕中心的50x50区域获取像素,但我没有取得任何成功。 如果我使用输出我没有得到任何像素,如果使用原始垫(图像)它得到顶角 请有人帮忙

@Override
public void onPreviewFrame(Mat image) {

    int w = image.cols();
    int h = image.rows();


    Mat roi=new Mat(image, new Rect(h/2 , w/2 , 50, 50));
    Mat output = roi.clone();

    int rw=output.cols();
    int rh=output.rows();

    //double [] arrp = output.get(rh, rw);//if i use the output i dont get any pixel
    double [] arrp = image.get(rh, rw);//if use original mat its getting the top corner
    Log.i("",+(int)arrp[2]+" "+ (int)arrp[1]+" "+(int)arrp[0]);
}

1 个答案:

答案 0 :(得分:3)

我假设你可以使用copyTo

Mat output(50, 50, image.type());
image(Rect(h/2 , w/2 , output.size())).copyTo(output);

矩阵类有一个运算符(const Rect& roi),它返回一个子矩阵(没有深度数据拷贝)。 :http://docs.opencv.org/modules/core/doc/basic_structures.html#id6

编辑:

没看到它是为了android。我认为没有运算符,所以你必须使用submat函数:

image.submat(Rect(h/2 , w/2 , output.size())).copyTo(output)