utils.cpp 1.92 KB
Newer Older
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81
#include <jni.h>

#ifdef __cplusplus
extern "C" {
#endif

/*
 * Class:     org_opencv_utils
 * Method:    nBitmapToMat(Bitmap b)
 * Signature: (L)J
 */
JNIEXPORT jlong JNICALL Java_org_opencv_utils_nBitmapToMat
  (JNIEnv *, jclass, jobject);

/*
 * Class:     org_opencv_utils
 * Method:    nBitmapToMat(long m, Bitmap b)
 * Signature: (JL)Z
 */
JNIEXPORT jboolean JNICALL Java_org_opencv_utils_nMatToBitmap
  (JNIEnv *, jclass, jlong, jobject);



#ifdef __cplusplus
}
#endif

#include "opencv2/core/core.hpp"

#include <android/bitmap.h>

JNIEXPORT jlong JNICALL Java_org_opencv_utils_nBitmapToMat
  (JNIEnv * env, jclass cls, jobject bitmap)
{
    AndroidBitmapInfo  info;
    void*              pixels;
	cv::Mat* m = NULL;

	if ( AndroidBitmap_getInfo(env, bitmap, &info) < 0 )
        return 0; // can't get info

    if (info.format != ANDROID_BITMAP_FORMAT_RGBA_8888)
        return 0; // incompatible format

    if ( AndroidBitmap_lockPixels(env, bitmap, &pixels) < 0 )
        return 0; // can't get pixels

	m = new cv::Mat(info.height, info.width, CV_8UC4);
	memcpy(m->data, pixels, info.height * info.width * 4);

    AndroidBitmap_unlockPixels(env, bitmap);

	return (jlong)m;
}

JNIEXPORT jboolean JNICALL Java_org_opencv_utils_nMatToBitmap
  (JNIEnv * env, jclass cls, jlong m, jobject bitmap)
{
    AndroidBitmapInfo  info;
    void*              pixels;
	cv::Mat* mat = (cv::Mat*) m;

	if ( m == 0 )
		return false; // no native Mat behind

	if ( AndroidBitmap_getInfo(env, bitmap, &info) < 0 )
        return false; // can't get info

    if (info.format != ANDROID_BITMAP_FORMAT_RGBA_8888)
        return false; // incompatible format

    if ( AndroidBitmap_lockPixels(env, bitmap, &pixels) < 0 )
        return false; // can't get pixels

	memcpy(pixels, mat->data, info.height * info.width * 4);

    AndroidBitmap_unlockPixels(env, bitmap);

	return true;
}