我正在使用NDK和JNI为我的Android应用程序,因此我有一些原生代码。我有一个自定义适配器,其中有一个列表视图,显示来自数据库btw的图像和按钮。但是,图像将由c ++使用。如果我单击按钮(来自java代码),它将通过(我真的不知道该术语)图像到c ++代码,我将使用该图像。 c ++代码是否可以从Java代码访问由按钮触发的图像?
我几乎是初学者,但这是我最后的项目,所以任何帮助都将受到赞赏:)
Adapter.Java
@Override
public View getView(int position, View convertView, ViewGroup parent) {
View v = View.inflate(mContext, R.layout.listview, null);
TextView pName = (TextView) v.findViewById(R.id.product_name);
ImageView pImage = (ImageView) v.findViewById(R.id.product_image);
TextView pPrice = (TextView) v.findViewById(R.id.product_price);
TextView pDescription = (TextView) v.findViewById(R.id.product_description);
TextView pCategory = (TextView) v.findViewById(R.id.product_category);
pName.setText(mProductList.get(position).getName());
Product image = mProductList.get(position);
final byte[] img = image.getImage();
Bitmap bitmap = BitmapFactory.decodeByteArray(img, 0, img.length);
pImage.setImageBitmap(bitmap);
pPrice.setText("$" + String.valueOf(mProductList.get(position).getPrice()));
pDescription.setText(mProductList.get(position).getDescription());
pCategory.setText(mProductList.get(position).getCategory());
Button tryMe = (Button)v.findViewById(R.id.tryMe);
tryMe.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
Intent cameraIntent = new Intent(mContext, OpencvCamera.class);
mContext.startActivity(cameraIntent);
}
});
return v;
}
下面的代码是我希望我的按钮将图像从数据库传递到c ++的地方,在c ++中它将与相机一起使用。在这里,按钮仅在按下相机类时重定向。
Button tryMe = (Button)v.findViewById(R.id.tryMe);
tryMe.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
/*WHAT SHOULD I PUT HERE FOR THE IMAGE PASSING*/
Intent cameraIntent = new Intent(mContext, OpencvCamera.class);
mContext.startActivity(cameraIntent);
}
}
以下是我的C ++代码
JNIEXPORT void JNICALL Java_nerds_thesis_clartips_OpencvClass_humanDetection
(JNIEnv *, jclass, jlong addrRgba){
Mat& frame = *(Mat*)addrRgba;
detectHuman(frame);
}
void detectHuman(Mat& frame){
String human_cascade_name = "/storage/emulated/0/haarcascade_upperbody.xml";
CascadeClassifier human_cascade;
if(!human_cascade.load( human_cascade_name ) ) { printf("--(!)Error loading\n"); return; };
std::vector<Rect> humans;
Mat frame_gray;
cvtColor( frame, frame_gray, CV_BGR2GRAY );
equalizeHist( frame_gray, frame_gray);
//Detect Human
human_cascade.detectMultiScale( frame_gray, humans, 1.1, 2, 0 | CV_HAAR_SCALE_IMAGE, Size(100, 100) );
Mat imageMask = imread("/storage/emulated/0/plain.png");
/*CODE FOR OVERLAYING THE IMAGE TO THE CAMERA*/
Mat imageMask = imread("/storage/emulated/0/plain.png");
以上的行是我唯一要做的测试。我只宣布它,我的任何按钮使用相同的图像。当然会的。这就是为什么当我按下使用java代码创建的按钮时,我想知道如何让我的本机代码访问图像。
答案 0 :(得分:0)
我认为不可能将图像对象传递到内存中;但是,您可以传递对图像的引用,例如要使用的C ++代码的URI或文件路径。 只需调整您的JNI声明即可添加该参考。