Java API: (per code review) renaming and moving utility classes

Testing: 1079/0/584
This commit is contained in:
Andrey Pavlenko
2011-08-03 08:53:27 +00:00
parent 02d5d93c3a
commit 25db453812
7 changed files with 78 additions and 78 deletions

View File

@@ -9,12 +9,12 @@ extern "C" {
#endif
/*
* Class: org_opencv_Android
* Class: org_opencv_android_Utils
* Method: nBitmapToMat(Bitmap b)
* Signature: (L)J
*/
JNIEXPORT jlong JNICALL Java_org_opencv_Android_nBitmapToMat
JNIEXPORT jlong JNICALL Java_org_opencv_android_Utils_nBitmapToMat
(JNIEnv * env, jclass cls, jobject bitmap)
{
AndroidBitmapInfo info;
@@ -40,11 +40,11 @@ JNIEXPORT jlong JNICALL Java_org_opencv_Android_nBitmapToMat
}
/*
* Class: org_opencv_Android
* Class: org_opencv_android_Utils
* Method: nBitmapToMat(long m, Bitmap b)
* Signature: (JL)Z
*/
JNIEXPORT jboolean JNICALL Java_org_opencv_Android_nMatToBitmap
JNIEXPORT jboolean JNICALL Java_org_opencv_android_Utils_nMatToBitmap
(JNIEnv * env, jclass cls, jlong m, jobject bitmap)
{
AndroidBitmapInfo info;