Skip to content
Projects
Groups
Snippets
Help
Loading...
Sign in / Register
Toggle navigation
O
opencv
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Packages
Packages
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
submodule
opencv
Commits
25db4538
Commit
25db4538
authored
Aug 03, 2011
by
Andrey Pavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Java API: (per code review) renaming and moving utility classes
Testing: 1079/0/584
parent
02d5d93c
Hide whitespace changes
Inline
Side-by-side
Showing
7 changed files
with
78 additions
and
78 deletions
+78
-78
ConvertersTest.java
...java/android_test/src/org/opencv/test/ConvertersTest.java
+1
-1
OpenCVTestRunner.java
...va/android_test/src/org/opencv/test/OpenCVTestRunner.java
+4
-4
coreTest.java
.../java/android_test/src/org/opencv/test/core/coreTest.java
+1
-1
gen_java.py
modules/java/gen_java.py
+1
-1
utils.cpp
modules/java/src/cpp/utils.cpp
+4
-4
android+Utils.java
modules/java/src/java/android+Utils.java
+62
-62
utils+Converters.java
modules/java/src/java/utils+Converters.java
+5
-5
No files found.
modules/java/android_test/src/org/opencv/test/ConvertersTest.java
View file @
25db4538
...
...
@@ -3,7 +3,7 @@ package org.opencv.test;
import
java.util.ArrayList
;
import
java.util.List
;
import
org.opencv.Converters
;
import
org.opencv.
utils.
Converters
;
import
org.opencv.core.CvType
;
import
org.opencv.core.Mat
;
import
org.opencv.core.Point
;
...
...
modules/java/android_test/src/org/opencv/test/OpenCVTestRunner.java
View file @
25db4538
...
...
@@ -5,7 +5,7 @@ import android.test.AndroidTestRunner;
import
android.test.InstrumentationTestRunner
;
import
android.util.Log
;
import
org.opencv.
Android
;
import
org.opencv.
android.Utils
;
import
java.io.File
;
import
java.io.IOException
;
...
...
@@ -50,9 +50,9 @@ public class OpenCVTestRunner extends InstrumentationTestRunner {
@Override
public
void
onStart
()
{
context
=
getContext
();
LENA_PATH
=
Android
.
ExportResource
(
context
,
R
.
drawable
.
lena
);
CHESS_PATH
=
Android
.
ExportResource
(
context
,
R
.
drawable
.
chessboard
);
LBPCASCADE_FRONTALFACE_PATH
=
Android
.
ExportResource
(
context
,
R
.
raw
.
lbpcascade_frontalface
);
LENA_PATH
=
Utils
.
ExportResource
(
context
,
R
.
drawable
.
lena
);
CHESS_PATH
=
Utils
.
ExportResource
(
context
,
R
.
drawable
.
chessboard
);
LBPCASCADE_FRONTALFACE_PATH
=
Utils
.
ExportResource
(
context
,
R
.
raw
.
lbpcascade_frontalface
);
// List<TestCase> testCases = androidTestRunner.getTestCases();
// Collections.shuffle(testCases); //shuffle the tests order
...
...
modules/java/android_test/src/org/opencv/test/core/coreTest.java
View file @
25db4538
...
...
@@ -3,7 +3,7 @@ package org.opencv.test.core;
import
java.util.ArrayList
;
import
java.util.List
;
import
org.opencv.Converters
;
import
org.opencv.
utils.
Converters
;
import
org.opencv.core.Core
;
import
org.opencv.core.CvException
;
import
org.opencv.core.CvType
;
...
...
modules/java/gen_java.py
View file @
25db4538
...
...
@@ -811,7 +811,7 @@ extern "C" {
if
ctype
.
startswith
(
'vector'
):
imports
.
add
(
"java.util.List"
)
imports
.
add
(
"org.opencv.core.Mat"
)
imports
.
add
(
"org.opencv.Converters"
)
imports
.
add
(
"org.opencv.
utils.
Converters"
)
ctype
=
ctype
.
replace
(
'vector_'
,
''
)
j_type
=
''
if
ctype
in
type_dict
:
...
...
modules/java/src/cpp/
Android
.cpp
→
modules/java/src/cpp/
utils
.cpp
View file @
25db4538
...
...
@@ -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
;
...
...
modules/java/src/java/
Android
.java
→
modules/java/src/java/
android+Utils
.java
View file @
25db4538
package
org
.
opencv
;
import
org.opencv.core.CvException
;
import
org.opencv.core.Mat
;
import
java.io.File
;
import
java.io.FileOutputStream
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
android.content.Context
;
import
android.graphics.Bitmap
;
public
class
Android
{
public
static
String
ExportResource
(
Context
context
,
int
resourceId
)
{
return
ExportResource
(
context
,
resourceId
,
"OpenCV_data"
);
}
public
static
String
ExportResource
(
Context
context
,
int
resourceId
,
String
dirname
)
{
String
fullname
=
context
.
getResources
().
getString
(
resourceId
);
String
resName
=
fullname
.
substring
(
fullname
.
lastIndexOf
(
"/"
)
+
1
);
try
{
InputStream
is
=
context
.
getResources
().
openRawResource
(
resourceId
);
File
resDir
=
context
.
getDir
(
dirname
,
Context
.
MODE_PRIVATE
);
File
resFile
=
new
File
(
resDir
,
resName
);
FileOutputStream
os
=
new
FileOutputStream
(
resFile
);
byte
[]
buffer
=
new
byte
[
4096
];
int
bytesRead
;
while
((
bytesRead
=
is
.
read
(
buffer
))
!=
-
1
)
{
os
.
write
(
buffer
,
0
,
bytesRead
);
}
is
.
close
();
os
.
close
();
return
resFile
.
getAbsolutePath
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
throw
new
CvException
(
"Failed to export resource "
+
resName
+
". Exception thrown: "
+
e
);
}
}
public
static
Mat
BitmapToMat
(
Bitmap
b
)
{
return
new
Mat
(
nBitmapToMat
(
b
));
}
public
static
boolean
MatToBitmap
(
Mat
m
,
Bitmap
b
)
{
return
nMatToBitmap
(
m
.
nativeObj
,
b
);
}
// native stuff
static
{
System
.
loadLibrary
(
"opencv_java"
);
}
private
static
native
long
nBitmapToMat
(
Bitmap
b
);
private
static
native
boolean
nMatToBitmap
(
long
m
,
Bitmap
b
);
}
package
org
.
opencv
.
android
;
import
org.opencv.core.CvException
;
import
org.opencv.core.Mat
;
import
java.io.File
;
import
java.io.FileOutputStream
;
import
java.io.IOException
;
import
java.io.InputStream
;
import
android.content.Context
;
import
android.graphics.Bitmap
;
public
class
Utils
{
public
static
String
ExportResource
(
Context
context
,
int
resourceId
)
{
return
ExportResource
(
context
,
resourceId
,
"OpenCV_data"
);
}
public
static
String
ExportResource
(
Context
context
,
int
resourceId
,
String
dirname
)
{
String
fullname
=
context
.
getResources
().
getString
(
resourceId
);
String
resName
=
fullname
.
substring
(
fullname
.
lastIndexOf
(
"/"
)
+
1
);
try
{
InputStream
is
=
context
.
getResources
().
openRawResource
(
resourceId
);
File
resDir
=
context
.
getDir
(
dirname
,
Context
.
MODE_PRIVATE
);
File
resFile
=
new
File
(
resDir
,
resName
);
FileOutputStream
os
=
new
FileOutputStream
(
resFile
);
byte
[]
buffer
=
new
byte
[
4096
];
int
bytesRead
;
while
((
bytesRead
=
is
.
read
(
buffer
))
!=
-
1
)
{
os
.
write
(
buffer
,
0
,
bytesRead
);
}
is
.
close
();
os
.
close
();
return
resFile
.
getAbsolutePath
();
}
catch
(
IOException
e
)
{
e
.
printStackTrace
();
throw
new
CvException
(
"Failed to export resource "
+
resName
+
". Exception thrown: "
+
e
);
}
}
public
static
Mat
BitmapToMat
(
Bitmap
b
)
{
return
new
Mat
(
nBitmapToMat
(
b
));
}
public
static
boolean
MatToBitmap
(
Mat
m
,
Bitmap
b
)
{
return
nMatToBitmap
(
m
.
nativeObj
,
b
);
}
// native stuff
static
{
System
.
loadLibrary
(
"opencv_java"
);
}
private
static
native
long
nBitmapToMat
(
Bitmap
b
);
private
static
native
boolean
nMatToBitmap
(
long
m
,
Bitmap
b
);
}
modules/java/src/java/Converters.java
→
modules/java/src/java/
utils+
Converters.java
View file @
25db4538
package
org
.
opencv
;
package
org
.
opencv
.
utils
;
import
java.util.List
;
...
...
@@ -475,7 +475,7 @@ public class Converters {
return
res
;
}
public
static
Mat
vector_DMatch_to_Mat
(
List
<
DMatch
>
matches
)
{
public
static
Mat
vector_DMatch_to_Mat
(
List
<
DMatch
>
matches
)
{
Mat
res
;
int
count
=
(
matches
!=
null
)
?
matches
.
size
()
:
0
;
if
(
count
>
0
){
...
...
@@ -493,8 +493,8 @@ public class Converters {
res
=
new
Mat
();
}
return
res
;
}
}
public
static
void
Mat_to_vector_DMatch
(
Mat
m
,
List
<
DMatch
>
matches
)
{
if
(
matches
==
null
)
throw
new
java
.
lang
.
IllegalArgumentException
(
"Output List can't be null"
);
...
...
@@ -507,7 +507,7 @@ public class Converters {
double
[]
buff
=
new
double
[
4
*
count
];
m
.
get
(
0
,
0
,
buff
);
for
(
int
i
=
0
;
i
<
count
;
i
++)
{
matches
.
add
(
new
DMatch
(
(
int
)
buff
[
4
*
i
],
(
int
)
buff
[
4
*
i
+
1
],
(
int
)
buff
[
4
*
i
+
2
],
(
float
)
buff
[
4
*
i
+
3
]
)
);
matches
.
add
(
new
DMatch
(
(
int
)
buff
[
4
*
i
],
(
int
)
buff
[
4
*
i
+
1
],
(
int
)
buff
[
4
*
i
+
2
],
(
float
)
buff
[
4
*
i
+
3
]
)
);
}
}
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment