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
c49b1bc6
Commit
c49b1bc6
authored
Dec 28, 2012
by
Andrey Pavlenko
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
partial fix for failing tests; fix for Windows launcher script; more quiet output
parent
ad326cb0
Hide whitespace changes
Inline
Side-by-side
Showing
16 changed files
with
17 additions
and
56 deletions
+17
-56
TermCriteriaTest.java
...droid_test/src/org/opencv/test/core/TermCriteriaTest.java
+1
-1
BRIEFDescriptorExtractorTest.java
.../opencv/test/features2d/BRIEFDescriptorExtractorTest.java
+1
-2
BruteForceDescriptorMatcherTest.java
...encv/test/features2d/BruteForceDescriptorMatcherTest.java
+1
-2
BruteForceHammingDescriptorMatcherTest.java
...st/features2d/BruteForceHammingDescriptorMatcherTest.java
+1
-1
BruteForceHammingLUTDescriptorMatcherTest.java
...features2d/BruteForceHammingLUTDescriptorMatcherTest.java
+1
-1
BruteForceL1DescriptorMatcherTest.java
...cv/test/features2d/BruteForceL1DescriptorMatcherTest.java
+1
-1
BruteForceSL2DescriptorMatcherTest.java
...v/test/features2d/BruteForceSL2DescriptorMatcherTest.java
+1
-2
FASTFeatureDetectorTest.java
...c/org/opencv/test/features2d/FASTFeatureDetectorTest.java
+1
-3
FlannBasedDescriptorMatcherTest.java
...encv/test/features2d/FlannBasedDescriptorMatcherTest.java
+1
-3
ORBDescriptorExtractorTest.java
...rg/opencv/test/features2d/ORBDescriptorExtractorTest.java
+1
-2
SIFTDescriptorExtractorTest.java
...g/opencv/test/features2d/SIFTDescriptorExtractorTest.java
+1
-2
STARFeatureDetectorTest.java
...c/org/opencv/test/features2d/STARFeatureDetectorTest.java
+1
-15
SURFDescriptorExtractorTest.java
...g/opencv/test/features2d/SURFDescriptorExtractorTest.java
+1
-2
SURFFeatureDetectorTest.java
...c/org/opencv/test/features2d/SURFFeatureDetectorTest.java
+1
-4
CMakeLists.txt
modules/java/java_test/CMakeLists.txt
+2
-2
build.xml
modules/java/java_test/build.xml
+1
-13
No files found.
modules/java/android_test/src/org/opencv/test/core/TermCriteriaTest.java
View file @
c49b1bc6
...
...
@@ -77,7 +77,7 @@ public class TermCriteriaTest extends OpenCVTestCase {
public
void
testToString
()
{
String
actual
=
tc2
.
toString
();
String
expected
=
"{ type: 2, maxCount: 4, epsilon:
0.001
}"
;
String
expected
=
"{ type: 2, maxCount: 4, epsilon:
"
+
EPS
+
"
}"
;
assertEquals
(
expected
,
actual
);
}
...
...
modules/java/android_test/src/org/opencv/test/features2d/BRIEFDescriptorExtractorTest.java
View file @
c49b1bc6
...
...
@@ -26,10 +26,9 @@ public class BRIEFDescriptorExtractorTest extends OpenCVTestCase {
@Override
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
extractor
=
DescriptorExtractor
.
create
(
DescriptorExtractor
.
BRIEF
);
matSize
=
100
;
super
.
setUp
();
}
public
void
testComputeListOfMatListOfListOfKeyPointListOfMat
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/BruteForceDescriptorMatcherTest.java
View file @
c49b1bc6
...
...
@@ -80,6 +80,7 @@ public class BruteForceDescriptorMatcherTest extends OpenCVTestCase {
}
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
matcher
=
DescriptorMatcher
.
create
(
DescriptorMatcher
.
BRUTEFORCE
);
matSize
=
100
;
...
...
@@ -90,8 +91,6 @@ public class BruteForceDescriptorMatcherTest extends OpenCVTestCase {
new
DMatch
(
3
,
1
,
0
,
0.48435235f
),
new
DMatch
(
4
,
0
,
0
,
1.0836693f
)
};
super
.
setUp
();
}
public
void
testAdd
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/BruteForceHammingDescriptorMatcherTest.java
View file @
c49b1bc6
...
...
@@ -65,6 +65,7 @@ public class BruteForceHammingDescriptorMatcherTest extends OpenCVTestCase {
}
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
matcher
=
DescriptorMatcher
.
create
(
DescriptorMatcher
.
BRUTEFORCE_HAMMING
);
matSize
=
100
;
...
...
@@ -73,7 +74,6 @@ public class BruteForceHammingDescriptorMatcherTest extends OpenCVTestCase {
new
DMatch
(
1
,
2
,
0
,
42
),
new
DMatch
(
2
,
1
,
0
,
40
),
new
DMatch
(
3
,
3
,
0
,
53
)
};
super
.
setUp
();
}
public
void
testAdd
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/BruteForceHammingLUTDescriptorMatcherTest.java
View file @
c49b1bc6
...
...
@@ -65,6 +65,7 @@ public class BruteForceHammingLUTDescriptorMatcherTest extends OpenCVTestCase {
}
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
matcher
=
DescriptorMatcher
.
create
(
DescriptorMatcher
.
BRUTEFORCE_HAMMINGLUT
);
matSize
=
100
;
...
...
@@ -73,7 +74,6 @@ public class BruteForceHammingLUTDescriptorMatcherTest extends OpenCVTestCase {
new
DMatch
(
1
,
2
,
0
,
42
),
new
DMatch
(
2
,
1
,
0
,
40
),
new
DMatch
(
3
,
3
,
0
,
53
)
};
super
.
setUp
();
}
public
void
testAdd
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/BruteForceL1DescriptorMatcherTest.java
View file @
c49b1bc6
...
...
@@ -80,6 +80,7 @@ public class BruteForceL1DescriptorMatcherTest extends OpenCVTestCase {
}
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
matcher
=
DescriptorMatcher
.
create
(
DescriptorMatcher
.
BRUTEFORCE_L1
);
matSize
=
100
;
...
...
@@ -90,7 +91,6 @@ public class BruteForceL1DescriptorMatcherTest extends OpenCVTestCase {
new
DMatch
(
3
,
1
,
0
,
2.6545324f
),
new
DMatch
(
4
,
0
,
0
,
6.1294870f
)
};
super
.
setUp
();
}
public
void
testAdd
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/BruteForceSL2DescriptorMatcherTest.java
View file @
c49b1bc6
...
...
@@ -85,6 +85,7 @@ public class BruteForceSL2DescriptorMatcherTest extends OpenCVTestCase {
}
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
matcher
=
DescriptorMatcher
.
create
(
DescriptorMatcher
.
BRUTEFORCE_SL2
);
matSize
=
100
;
...
...
@@ -95,8 +96,6 @@ public class BruteForceSL2DescriptorMatcherTest extends OpenCVTestCase {
new
DMatch
(
3
,
1
,
0
,
0.23459719f
),
new
DMatch
(
4
,
0
,
0
,
1.174339f
)
};
super
.
setUp
();
}
public
void
testAdd
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/FASTFeatureDetectorTest.java
View file @
c49b1bc6
...
...
@@ -33,12 +33,10 @@ public class FASTFeatureDetectorTest extends OpenCVTestCase {
@Override
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
detector
=
FeatureDetector
.
create
(
FeatureDetector
.
FAST
);
truth
=
new
KeyPoint
[]
{
new
KeyPoint
(
32
,
27
,
7
,
-
1
,
254
,
0
,
-
1
),
new
KeyPoint
(
27
,
32
,
7
,
-
1
,
254
,
0
,
-
1
),
new
KeyPoint
(
73
,
68
,
7
,
-
1
,
254
,
0
,
-
1
),
new
KeyPoint
(
68
,
73
,
7
,
-
1
,
254
,
0
,
-
1
)
};
super
.
setUp
();
}
public
void
testCreate
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/FlannBasedDescriptorMatcherTest.java
View file @
c49b1bc6
...
...
@@ -154,9 +154,9 @@ public class FlannBasedDescriptorMatcherTest extends OpenCVTestCase {
}
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
matcher
=
DescriptorMatcher
.
create
(
DescriptorMatcher
.
FLANNBASED
);
matSize
=
100
;
truth
=
new
DMatch
[]
{
new
DMatch
(
0
,
0
,
0
,
1.049694f
),
new
DMatch
(
1
,
0
,
0
,
1.0984558f
),
...
...
@@ -164,8 +164,6 @@ public class FlannBasedDescriptorMatcherTest extends OpenCVTestCase {
new
DMatch
(
3
,
1
,
0
,
0.48435235f
),
new
DMatch
(
4
,
0
,
0
,
1.0836693f
)
};
super
.
setUp
();
}
public
void
testAdd
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/ORBDescriptorExtractorTest.java
View file @
c49b1bc6
...
...
@@ -31,10 +31,9 @@ public class ORBDescriptorExtractorTest extends OpenCVTestCase {
@Override
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
extractor
=
DescriptorExtractor
.
create
(
DescriptorExtractor
.
ORB
);
matSize
=
100
;
super
.
setUp
();
}
public
void
testComputeListOfMatListOfListOfKeyPointListOfMat
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/SIFTDescriptorExtractorTest.java
View file @
c49b1bc6
...
...
@@ -28,6 +28,7 @@ public class SIFTDescriptorExtractorTest extends OpenCVTestCase {
@Override
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
extractor
=
DescriptorExtractor
.
create
(
DescriptorExtractor
.
SIFT
);
keypoint
=
new
KeyPoint
(
55.775577545166016f
,
44.224422454833984f
,
16
,
9.754629f
,
8617.863f
,
1
,
-
1
);
matSize
=
100
;
...
...
@@ -44,8 +45,6 @@ public class SIFTDescriptorExtractorTest extends OpenCVTestCase {
);
}
};
super
.
setUp
();
}
public
void
testComputeListOfMatListOfListOfKeyPointListOfMat
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/STARFeatureDetectorTest.java
View file @
c49b1bc6
...
...
@@ -42,22 +42,10 @@ public class STARFeatureDetectorTest extends OpenCVTestCase {
}
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
detector
=
FeatureDetector
.
create
(
FeatureDetector
.
STAR
);
matSize
=
200
;
truth
=
new
KeyPoint
[]
{
/*
new KeyPoint(95, 80, 22, -1, 31.595734f, 0, -1),
new KeyPoint(105, 80, 22, -1, 31.595734f, 0, -1),
new KeyPoint(80, 95, 22, -1, 31.595734f, 0, -1),
new KeyPoint(120, 95, 22, -1, 31.595734f, 0, -1),
new KeyPoint(100, 100, 8, -1, -219.90825f, 0, -1),
new KeyPoint(80, 105, 22, -1, 31.595734f, 0, -1),
new KeyPoint(120, 105, 22, -1, 31.595734f, 0, -1),
new KeyPoint(95, 120, 22, -1, 31.595734f, 0, -1),
new KeyPoint(105, 120, 22, -1, 31.595734f, 0, -1)
*/
new
KeyPoint
(
95
,
80
,
22
,
-
1
,
31.5957f
,
0
,
-
1
),
new
KeyPoint
(
105
,
80
,
22
,
-
1
,
31.5957f
,
0
,
-
1
),
new
KeyPoint
(
80
,
95
,
22
,
-
1
,
31.5957f
,
0
,
-
1
),
...
...
@@ -68,8 +56,6 @@ public class STARFeatureDetectorTest extends OpenCVTestCase {
new
KeyPoint
(
95
,
120
,
22
,
-
1
,
31.5957f
,
0
,
-
1
),
new
KeyPoint
(
105
,
120
,
22
,
-
1
,
31.5957f
,
0
,
-
1
)
};
super
.
setUp
();
}
public
void
testCreate
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/SURFDescriptorExtractorTest.java
View file @
c49b1bc6
...
...
@@ -26,10 +26,9 @@ public class SURFDescriptorExtractorTest extends OpenCVTestCase {
@Override
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
extractor
=
DescriptorExtractor
.
create
(
DescriptorExtractor
.
SURF
);
matSize
=
100
;
super
.
setUp
();
}
public
void
testComputeListOfMatListOfListOfKeyPointListOfMat
()
{
...
...
modules/java/android_test/src/org/opencv/test/features2d/SURFFeatureDetectorTest.java
View file @
c49b1bc6
...
...
@@ -52,18 +52,15 @@ public class SURFFeatureDetectorTest extends OpenCVTestCase {
@Override
protected
void
setUp
()
throws
Exception
{
super
.
setUp
();
detector
=
FeatureDetector
.
create
(
FeatureDetector
.
SURF
);
matSize
=
100
;
truth
=
new
KeyPoint
[]
{
new
KeyPoint
(
55.775578f
,
55.775578f
,
16
,
80.245735f
,
8617.8633f
,
0
,
-
1
),
new
KeyPoint
(
44.224422f
,
55.775578f
,
16
,
170.24574f
,
8617.8633f
,
0
,
-
1
),
new
KeyPoint
(
44.224422f
,
44.224422f
,
16
,
260.24573f
,
8617.8633f
,
0
,
-
1
),
new
KeyPoint
(
55.775578f
,
44.224422f
,
16
,
350.24573f
,
8617.8633f
,
0
,
-
1
)
};
super
.
setUp
();
}
public
void
testCreate
()
{
...
...
modules/java/java_test/CMakeLists.txt
View file @
c49b1bc6
...
...
@@ -70,8 +70,8 @@ file(COPY "${CMAKE_CURRENT_SOURCE_DIR}/build.xml" DESTINATION "${opencv_test_jav
# Create a script for running the Java tests and place it in build/bin.
if
(
WIN32
)
file
(
WRITE
"
${
CMAKE_BINARY_DIR
}
/bin/opencv_test_java.cmd"
"cd
${
opencv_test_java_bin_dir
}
\n
set path=
${
EXECUTABLE_OUTPUT_PATH
}
;%path
%
\n
ant -DjavaLibraryPath=
${
EXECUTABLE_OUTPUT_PATH
}
/Release buildAndTest"
)
file
(
WRITE
"
${
CMAKE_BINARY_DIR
}
/bin/opencv_test_java_D.cmd"
"cd
${
opencv_test_java_bin_dir
}
\n
set
path=
${
EXECUTABLE_OUTPUT_PATH
}
;%path%
\n
ant -DjavaLibraryPath=
${
EXECUTABLE_OUTPUT_PATH
}
/Debug
buildAndTest"
)
file
(
WRITE
"
${
CMAKE_BINARY_DIR
}
/bin/opencv_test_java.cmd"
"cd
${
opencv_test_java_bin_dir
}
\n
set PATH=
${
EXECUTABLE_OUTPUT_PATH
}
/Release;%PATH
%
\n
ant -DjavaLibraryPath=
${
EXECUTABLE_OUTPUT_PATH
}
/Release buildAndTest"
)
file
(
WRITE
"
${
CMAKE_BINARY_DIR
}
/bin/opencv_test_java_D.cmd"
"cd
${
opencv_test_java_bin_dir
}
\n
set
PATH=
${
EXECUTABLE_OUTPUT_PATH
}
/Debug;%PATH%
\n
ant -DjavaLibraryPath=
${
EXECUTABLE_OUTPUT_PATH
}
/Debug
buildAndTest"
)
else
()
file
(
WRITE
"
${
CMAKE_BINARY_DIR
}
/bin/opencv_test_java.sh"
"cd
${
opencv_test_java_bin_dir
}
;
\n
ant -DjavaLibraryPath=
${
LIBRARY_OUTPUT_PATH
}
buildAndTest;
\n
cd -"
)
endif
()
...
...
modules/java/java_test/build.xml
View file @
c49b1bc6
...
...
@@ -31,21 +31,9 @@
</jar>
</target>
<!-- <target name="run" > -->
<!-- <java fork="true" classname="org.opencv.test.OpenCVTestRunner"> -->
<!-- <sysproperty key="java.library.path" path="${javaLibraryPath}"/> -->
<!-- <classpath refid="master-classpath"/> -->
<!-- <classpath> -->
<!-- <fileset dir="build/jar"> -->
<!-- <include name="*.jar"/> -->
<!-- </fileset> -->
<!-- </classpath> -->
<!-- </java> -->
<!-- </target> -->
<target
name=
"test"
>
<mkdir
dir=
"testResults"
/>
<junit
printsummary=
"
yes"
haltonfailure=
"false
"
>
<junit
printsummary=
"
false"
haltonfailure=
"false"
haltonerror=
"false"
showoutput=
"false"
logfailedtests=
"true"
maxmemory=
"256m
"
>
<sysproperty
key=
"java.library.path"
path=
"${javaLibraryPath}"
/>
<classpath
refid=
"master-classpath"
/>
<classpath>
...
...
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