mirror of https://github.com/opencv/opencv.git
parent
e3ede92db6
commit
eff9eda9a6
4 changed files with 1965 additions and 1898 deletions
File diff suppressed because it is too large
Load Diff
@ -1,39 +1,42 @@ |
||||
package org.opencv.test.video; |
||||
|
||||
import org.opencv.test.OpenCVTestCase; |
||||
import org.opencv.video.KalmanFilter; |
||||
|
||||
public class KalmanFilterTest extends OpenCVTestCase { |
||||
|
||||
protected void setUp() throws Exception { |
||||
super.setUp(); |
||||
} |
||||
protected void setUp() throws Exception { |
||||
super.setUp(); |
||||
} |
||||
|
||||
public void testCorrect() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
public void testCorrect() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
|
||||
public void testKalmanFilter() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
public void testKalmanFilter() { |
||||
KalmanFilter kf = new KalmanFilter(); |
||||
|
||||
public void testKalmanFilterIntInt() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
assertNotNull(kf); |
||||
} |
||||
|
||||
public void testKalmanFilterIntIntInt() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
public void testKalmanFilterIntInt() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
|
||||
public void testKalmanFilterIntIntIntInt() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
public void testKalmanFilterIntIntInt() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
|
||||
public void testPredict() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
public void testKalmanFilterIntIntIntInt() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
|
||||
public void testPredictMat() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
public void testPredict() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
|
||||
public void testPredictMat() { |
||||
fail("Not yet implemented"); |
||||
} |
||||
|
||||
} |
||||
|
Loading…
Reference in new issue