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
3af92a9d
Commit
3af92a9d
authored
Jun 21, 2012
by
Andrey Pavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
fixing warnings
parent
b065c7a2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
2 deletions
+4
-2
gen_java.py
modules/java/gen_java.py
+2
-0
Mat.cpp
modules/java/src/cpp/Mat.cpp
+2
-2
No files found.
modules/java/gen_java.py
View file @
3af92a9d
...
...
@@ -360,6 +360,7 @@ ManualFuncs = {
'cpp_code'
:
"""
// C++: minMaxLoc(Mat src, double* minVal, double* maxVal=0, Point* minLoc=0, Point* maxLoc=0, InputArray mask=noArray())
JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_Core_n_1minMaxLocManual (JNIEnv*, jclass, jlong, jlong);
JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_Core_n_1minMaxLocManual
(JNIEnv* env, jclass, jlong src_nativeObj, jlong mask_nativeObj)
...
...
@@ -430,6 +431,7 @@ JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_Core_n_1minMaxLocManual
'cpp_code'
:
"""
// C++: Size getTextSize(const string& text, int fontFace, double fontScale, int thickness, int* baseLine);
JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_Core_n_1getTextSize (JNIEnv*, jclass, jstring, jint, jdouble, jint, jintArray);
JNIEXPORT jdoubleArray JNICALL Java_org_opencv_core_Core_n_1getTextSize
(JNIEnv* env, jclass, jstring text, jint fontFace, jdouble fontScale, jint thickness, jintArray baseLine)
...
...
modules/java/src/cpp/Mat.cpp
View file @
3af92a9d
...
...
@@ -2505,10 +2505,10 @@ JNIEXPORT jint JNICALL Java_org_opencv_core_Mat_nGetD
}
JNIEXPORT
jdoubleArray
JNICALL
Java_org_opencv_core_Mat_nGet
(
JNIEnv
*
env
,
jclass
,
jlong
self
,
jint
row
,
jint
col
,
jint
count
);
(
JNIEnv
*
env
,
jclass
,
jlong
self
,
jint
row
,
jint
col
);
JNIEXPORT
jdoubleArray
JNICALL
Java_org_opencv_core_Mat_nGet
(
JNIEnv
*
env
,
jclass
,
jlong
self
,
jint
row
,
jint
col
,
jint
count
)
(
JNIEnv
*
env
,
jclass
,
jlong
self
,
jint
row
,
jint
col
)
{
try
{
LOGD
(
"Mat::nGet()"
);
...
...
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