Reputation: 317
I am doing a project in Java with Android jni C++. I have a function in C++ with the following parameters:
C++ function:
void rectify (vector <Point2f> & corners, Mat & img) {...}
In JAVA, call would be:
Mat image = Highgui.imread("img.png");
List <MatOfPoint> cornners = new ArrayList<MatOfPoint>();;
Point b = new Point (real_x2, real_y2);
MatOfPoint ma = new MatOfPoint (b);
cornners.add(ma);
rectfy(image.getNativeObjAddr(), cornners)
public native void rectfy(long mat, "??" matofpoint);
With that, I wonder how will the function C++ jni:
JNIEXPORT void JNICALL Java_ImageProcessingActivity_rectfy (JNIEnv * jobject, ?? cornners, inputMatAddress jlong)
Upvotes: 8
Views: 6638
Reputation: 823
If I understand you correctly, that what you want to do is to pass a bunch of points from Java to C++, then I think this is roughly what you are looking for:
#include <vector>
#include <jni.h>
class Point2f {
public:
double x;
double y;
Point2f(double x, double y) : x(x), y(y) {}
};
extern "C" JNIEXPORT void JNICALL Java_com_example_ImageProcessingActivity_transferPointsToNative(JNIEnv* env, jobject self, jobject input) {
jclass alCls = env->FindClass("java/util/ArrayList");
jclass ptCls = env->FindClass("java/awt/Point");
if (alCls == nullptr || ptCls == nullptr) {
return;
}
jmethodID alGetId = env->GetMethodID(alCls, "get", "(I)Ljava/lang/Object;");
jmethodID alSizeId = env->GetMethodID(alCls, "size", "()I");
jmethodID ptGetXId = env->GetMethodID(ptCls, "getX", "()D");
jmethodID ptGetYId = env->GetMethodID(ptCls, "getY", "()D");
if (alGetId == nullptr || alSizeId == nullptr || ptGetXId == nullptr || ptGetYId == nullptr) {
env->DeleteLocalRef(alCls);
env->DeleteLocalRef(ptCls);
return;
}
int pointCount = static_cast<int>(env->CallIntMethod(input, alSizeId));
if (pointCount < 1) {
env->DeleteLocalRef(alCls);
env->DeleteLocalRef(ptCls);
return;
}
std::vector<Point2f> points;
points.reserve(pointCount);
double x, y;
for (int i = 0; i < pointCount; ++i) {
jobject point = env->CallObjectMethod(input, alGetId, i);
x = static_cast<double>(env->CallDoubleMethod(point, ptGetXId));
y = static_cast<double>(env->CallDoubleMethod(point, ptGetYId));
env->DeleteLocalRef(point);
points.push_back(Point2f(x, y));
}
env->DeleteLocalRef(alCls);
env->DeleteLocalRef(ptCls);
}
With a corresponding method declaration in Java:
private native void transferPointsToNative(ArrayList<Point> input);
Upvotes: 17