cv::Mat result = ; //此处为C++获取到的cv::mat结果对象// 编码为JPEG格式std::vector<uchar> buf;cv::imencode(".jpg", result, buf);// 创建一个新的jbyteArray并设置其大小jbyteArray array = env->NewByteArray(buf.size());if (array == NULL) {// 处理内存分配失败的情况return NULL;}// 将编码后的数据复制到jbyteArrayenv->SetByteArrayRegion(array, 0, buf.size(), reinterpret_cast<jbyte *>(buf.data()));env->ReleaseByteArrayElements(inputImage, reinterpret_cast<jbyte *>(buf_in), 0);__android_log_print(ANDROID_LOG_ERROR, LOG_TAG,"This is a debug message for Desensitization end.");
将结果array 返回即可