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
eff9eda9
Commit
eff9eda9
authored
Jul 27, 2011
by
Andrey Kamaev
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
Added some new tests for Java API
parent
e3ede92d
Expand all
Show whitespace changes
Inline
Side-by-side
Showing
4 changed files
with
5 additions
and
3 deletions
+5
-3
calib3dTest.java
...android_test/src/org/opencv/test/calib3d/calib3dTest.java
+0
-1
imgprocTest.java
...android_test/src/org/opencv/test/imgproc/imgprocTest.java
+0
-0
HOGDescriptorTest.java
...test/src/org/opencv/test/objdetect/HOGDescriptorTest.java
+1
-1
KalmanFilterTest.java
...roid_test/src/org/opencv/test/video/KalmanFilterTest.java
+4
-1
No files found.
modules/java/android_test/src/org/opencv/test/calib3d/calib3dTest.java
View file @
eff9eda9
...
@@ -10,7 +10,6 @@ import org.opencv.core.Point3;
...
@@ -10,7 +10,6 @@ import org.opencv.core.Point3;
import
org.opencv.core.Scalar
;
import
org.opencv.core.Scalar
;
import
org.opencv.core.Size
;
import
org.opencv.core.Size
;
import
org.opencv.test.OpenCVTestCase
;
import
org.opencv.test.OpenCVTestCase
;
import
org.opencv.test.OpenCVTestRunner
;
import
java.util.ArrayList
;
import
java.util.ArrayList
;
import
java.util.List
;
import
java.util.List
;
...
...
modules/java/android_test/src/org/opencv/test/imgproc/imgprocTest.java
View file @
eff9eda9
This diff is collapsed.
Click to expand it.
modules/java/android_test/src/org/opencv/test/objdetect/HOGDescriptorTest.java
View file @
eff9eda9
...
@@ -192,7 +192,7 @@ public class HOGDescriptorTest extends OpenCVTestCase {
...
@@ -192,7 +192,7 @@ public class HOGDescriptorTest extends OpenCVTestCase {
public
void
testHOGDescriptor
()
{
public
void
testHOGDescriptor
()
{
HOGDescriptor
hog
=
new
HOGDescriptor
();
HOGDescriptor
hog
=
new
HOGDescriptor
();
assert
True
(
null
!=
hog
);
assert
NotNull
(
hog
);
assertEquals
(
HOGDescriptor
.
DEFAULT_NLEVELS
,
hog
.
get_nlevels
());
assertEquals
(
HOGDescriptor
.
DEFAULT_NLEVELS
,
hog
.
get_nlevels
());
}
}
...
...
modules/java/android_test/src/org/opencv/test/video/KalmanFilterTest.java
View file @
eff9eda9
package
org
.
opencv
.
test
.
video
;
package
org
.
opencv
.
test
.
video
;
import
org.opencv.test.OpenCVTestCase
;
import
org.opencv.test.OpenCVTestCase
;
import
org.opencv.video.KalmanFilter
;
public
class
KalmanFilterTest
extends
OpenCVTestCase
{
public
class
KalmanFilterTest
extends
OpenCVTestCase
{
...
@@ -13,7 +14,9 @@ public class KalmanFilterTest extends OpenCVTestCase {
...
@@ -13,7 +14,9 @@ public class KalmanFilterTest extends OpenCVTestCase {
}
}
public
void
testKalmanFilter
()
{
public
void
testKalmanFilter
()
{
fail
(
"Not yet implemented"
);
KalmanFilter
kf
=
new
KalmanFilter
();
assertNotNull
(
kf
);
}
}
public
void
testKalmanFilterIntInt
()
{
public
void
testKalmanFilterIntInt
()
{
...
...
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