gpt4 book ai didi

android-opencv 使用 matToBitmap/bitmapToMat 将 mat 转换为灰度

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:16:27 29 4
gpt4 key购买 nike

我在 Eclipse 中使用更新的 willowgarage opencv 库。我想将 mat 变量转换为灰度,我已经尝试了我在网上找到的所有内容,但它们对我不起作用。

这是我的代码

package com.deneme.deneme;

import android.app.Activity;
import android.os.Bundle;
import android.widget.ImageView;
import org.opencv.android.Utils;
import org.opencv.core.Mat;
import org.opencv.imgproc.Imgproc;
import android.graphics.Bitmap;
import android.graphics.BitmapFactory;
public class main extends Activity {
/** Called when the activity is first created. */

@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);

ImageView img=(ImageView) findViewById(R.id.pic);

Bitmap bmp = BitmapFactory.decodeResource(getResources(), R.drawable.p26);

Mat imgToProcess=Utils.bitmapToMat(bmp);

//******
//right here I need to convert this imgToProcess to grayscale for future opencv processes
//******

Bitmap bmpOut = Bitmap.createBitmap(imgToProcess.cols(), imgToProcess.rows(), Bitmap.Config.ARGB_8888);

Utils.matToBitmap(imgToProcess, bmpOut);
img.setImageBitmap(bmpOut);
}

最佳答案

在您的代码块中添加以下代码:

Imgproc.cvtColor(imgToProcess, imgToProcess, Imgproc.COLOR_BGR2GRAY);
Imgproc.cvtColor(imgToProcess, imgToProcess, Imgproc.COLOR_GRAY2RGBA, 4);

或者您可以自己访问像素:

for(int i=0;i<imgToProcess.height();i++){
for(int j=0;j<imgToProcess.width();j++){
double y = 0.3 * imgToProcess.get(i, j)[0] + 0.59 * imgToProcess.get(i, j)[1] + 0.11 * imgToProcess.get(i, j)[2];
imgToProcess.put(i, j, new double[]{y, y, y, 255});
}
}

关于android-opencv 使用 matToBitmap/bitmapToMat 将 mat 转换为灰度,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/8454542/

29 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com