org.opencv.utils renamed to org.opencv.android

This commit is contained in:
Andrey Pavlenko
2011-07-12 13:31:02 +00:00
parent bc9a9b714c
commit 7ca50b2b3d
4 changed files with 9 additions and 9 deletions

View File

@@ -9,12 +9,12 @@ extern "C" {
#endif
/*
* Class: org_opencv_utils
* Class: org_opencv_android
* Method: nBitmapToMat(Bitmap b)
* Signature: (L)J
*/
JNIEXPORT jlong JNICALL Java_org_opencv_utils_nBitmapToMat
JNIEXPORT jlong JNICALL Java_org_opencv_android_nBitmapToMat
(JNIEnv * env, jclass cls, jobject bitmap)
{
AndroidBitmapInfo info;
@@ -40,11 +40,11 @@ JNIEXPORT jlong JNICALL Java_org_opencv_utils_nBitmapToMat
}
/*
* Class: org_opencv_utils
* Class: org_opencv_android
* Method: nBitmapToMat(long m, Bitmap b)
* Signature: (JL)Z
*/
JNIEXPORT jboolean JNICALL Java_org_opencv_utils_nMatToBitmap
JNIEXPORT jboolean JNICALL Java_org_opencv_android_nMatToBitmap
(JNIEnv * env, jclass cls, jlong m, jobject bitmap)
{
AndroidBitmapInfo info;

View File

@@ -2,7 +2,7 @@ package org.opencv;
import android.graphics.Bitmap;
public class utils {
public class android {
public static Mat BitmapToMat(Bitmap b) {
return new Mat( nBitmapToMat(b) );