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
0db73575
Commit
0db73575
authored
Jul 14, 2011
by
Leonid Beynenson
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added class TermCriteria.
parent
e33bfb5e
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
67 additions
and
4 deletions
+67
-4
gen_java.py
modules/java/gen_java.py
+7
-4
TermCriteria.java
modules/java/src/java/TermCriteria.java
+60
-0
No files found.
modules/java/gen_java.py
View file @
0db73575
...
...
@@ -78,7 +78,7 @@ type_dict = {
"Range"
:
{
"j_type"
:
"Range"
,
"jn_args"
:
((
"int"
,
".start"
),
(
"int"
,
".end"
)),
"jni_var"
:
"cv::Range
%(n)
s(
%(n)
s_start,
%(n)
s_end)"
,
"suffix"
:
"II"
},
"CvSlice"
:
{
"j_type"
:
"Range"
,
"jn_args"
:
((
"int"
,
".start"
),
(
"int"
,
".end"
)),
"CvSlice"
:
{
"j_type"
:
"Range"
,
"jn_args"
:
((
"int"
,
".start"
),
(
"int"
,
".end"
)),
"jni_var"
:
"cv::Range
%(n)
s(
%(n)
s_start,
%(n)
s_end)"
,
"suffix"
:
"II"
},
"string"
:
{
"j_type"
:
"java.lang.String"
,
"jn_type"
:
"java.lang.String"
,
...
...
@@ -93,6 +93,9 @@ type_dict = {
"jni_type"
:
"jstring"
,
"jni_name"
:
"n_
%(n)
s.c_str()"
,
"jni_var"
:
'const char* utf_
%(n)
s = env->GetStringUTFChars(
%(n)
s, 0); std::string n_
%(n)
s( utf_
%(n)
s ? utf_
%(n)
s : "" ); env->ReleaseStringUTFChars(
%(n)
s, utf_
%(n)
s)'
,
"suffix"
:
"Ljava_lang_String_2"
},
"TermCriteria"
:
{
"j_type"
:
"TermCriteria"
,
"jn_args"
:
((
"int"
,
".type"
),
(
"int"
,
".maxCount"
),
(
"double"
,
".epsilon"
)),
"jni_var"
:
"TermCriteria
%(n)
s(
%(n)
s_type,
%(n)
s_maxCount,
%(n)
s_epsilon)"
,
"suffix"
:
"IID"
},
}
...
...
@@ -320,7 +323,7 @@ class JavaWrapperGenerator(object):
if (mask != null) {
maskNativeObj=mask.nativeObj;
}
double resarr[] = n_minMaxLoc(src.nativeObj, maskNativeObj);
double resarr[] = n_minMaxLoc
Manual
(src.nativeObj, maskNativeObj);
res.minVal=resarr[0];
res.maxVal=resarr[1];
res.minLoc.x=resarr[2];
...
...
@@ -332,7 +335,7 @@ class JavaWrapperGenerator(object):
public static MinMaxLocResult minMaxLoc(Mat src) {
return minMaxLoc(src, null);
}
private static native double[] n_minMaxLoc(long src_nativeObj, long mask_nativeObj);
private static native double[] n_minMaxLoc
Manual
(long src_nativeObj, long mask_nativeObj);
"""
)
...
...
@@ -420,7 +423,7 @@ class JavaWrapperGenerator(object):
if
module
==
"core"
:
self
.
cpp_code
.
write
(
\
"""
JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_n_1minMaxLoc
JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_n_1minMaxLoc
Manual
(JNIEnv* env, jclass cls, jlong src_nativeObj, jlong mask_nativeObj)
{
try {
...
...
modules/java/src/java/TermCriteria.java
0 → 100644
View file @
0db73575
package
org
.
opencv
;
//javadoc:TermCriteria
public
class
TermCriteria
{
public
int
type
;
public
int
maxCount
;
public
double
epsilon
;
public
TermCriteria
(
int
t
,
int
c
,
double
e
)
{
this
.
type
=
t
;
this
.
maxCount
=
c
;
this
.
epsilon
=
e
;
}
public
TermCriteria
()
{
this
(
0
,
0
,
0.0
);
}
public
TermCriteria
(
double
[]
vals
)
{
this
();
if
(
vals
!=
null
)
{
type
=
vals
.
length
>
0
?
(
int
)
vals
[
0
]
:
0
;
maxCount
=
vals
.
length
>
1
?
(
int
)
vals
[
1
]
:
0
;
epsilon
=
vals
.
length
>
2
?
(
double
)
vals
[
2
]
:
0
;
}
}
public
TermCriteria
clone
()
{
return
new
TermCriteria
(
type
,
maxCount
,
epsilon
);
}
@Override
public
int
hashCode
()
{
final
int
prime
=
31
;
int
result
=
1
;
long
temp
;
temp
=
Double
.
doubleToLongBits
(
type
);
result
=
prime
*
result
+
(
int
)
(
temp
^
(
temp
>>>
32
));
temp
=
Double
.
doubleToLongBits
(
maxCount
);
result
=
prime
*
result
+
(
int
)
(
temp
^
(
temp
>>>
32
));
temp
=
Double
.
doubleToLongBits
(
epsilon
);
result
=
prime
*
result
+
(
int
)
(
temp
^
(
temp
>>>
32
));
return
result
;
}
@Override
public
boolean
equals
(
Object
obj
)
{
if
(
this
==
obj
)
return
true
;
if
(!(
obj
instanceof
TermCriteria
))
return
false
;
TermCriteria
it
=
(
TermCriteria
)
obj
;
return
type
==
it
.
type
&&
maxCount
==
it
.
maxCount
&&
epsilon
==
it
.
epsilon
;
}
@Override
public
String
toString
()
{
if
(
this
==
null
)
return
"null"
;
return
"{ type: "
+
type
+
", maxCount: "
+
maxCount
+
", epsilon: "
+
epsilon
+
"}"
;
}
}
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