java tests: minor updates
This commit is contained in:
@@ -530,14 +530,14 @@ public class imgprocTest extends OpenCVTestCase {
|
||||
Point truthPosition = new Point(img.cols() / 2, img.rows() / 2);
|
||||
|
||||
Rect r = new Rect(new Point(0, 0), truthPosition);
|
||||
Core.rectangle(img, r.tl(), r.br(), new Scalar(0), -1/* TODO: CV_FILLED */);
|
||||
Core.rectangle(img, r.tl(), r.br(), new Scalar(0), -1 /*TODO: CV_FILLED*/);
|
||||
|
||||
List<Point> corners = new ArrayList<Point>();
|
||||
corners.add(new Point(truthPosition.x + 1, truthPosition.y + 1));
|
||||
|
||||
Size winSize = new Size(2, 2);
|
||||
Size zeroZone = new Size(-1, -1);
|
||||
TermCriteria criteria = new TermCriteria(2/* TODO: CV_TERMCRIT_EPS */, 0, 0.01);
|
||||
TermCriteria criteria = new TermCriteria(2 /*TODO: CV_TERMCRIT_EPS*/, 0, 0.01);
|
||||
|
||||
Imgproc.cornerSubPix(img, corners, winSize, zeroZone, criteria);
|
||||
assertPointEquals(truthPosition, corners.get(0), weakEPS);
|
||||
@@ -767,8 +767,7 @@ public class imgprocTest extends OpenCVTestCase {
|
||||
}
|
||||
|
||||
public void testFitEllipse() {
|
||||
Mat points = new Mat(1, 5, CvType.CV_32FC2); // TODO: use the list of
|
||||
// Points
|
||||
Mat points = new Mat(1, 5, CvType.CV_32FC2); // TODO: use the list of Points
|
||||
points.put(0, 0, 0.0, 0.0, -1.0, 1.0, 1.0, 1.0, 1.0, -1.0, -1.0, -1.0);
|
||||
|
||||
RotatedRect rrect = new RotatedRect();
|
||||
|
@@ -7,6 +7,7 @@ import org.opencv.core.Rect;
|
||||
import org.opencv.core.Size;
|
||||
import org.opencv.imgproc.Imgproc;
|
||||
import org.opencv.objdetect.CascadeClassifier;
|
||||
import org.opencv.objdetect.Objdetect;
|
||||
import org.opencv.test.OpenCVTestCase;
|
||||
import org.opencv.test.OpenCVTestRunner;
|
||||
|
||||
@@ -39,10 +40,7 @@ public class CascadeClassifierTest extends OpenCVTestCase {
|
||||
Imgproc.cvtColor(rgbLena, greyLena, Imgproc.COLOR_RGB2GRAY);
|
||||
|
||||
// TODO: doesn't detect with 1.1 scale
|
||||
cc.detectMultiScale(greyLena, faces, 1.09, 2, 2 /*
|
||||
* TODO:
|
||||
* CV_HAAR_SCALE_IMAGE
|
||||
*/, new Size(30, 30));
|
||||
cc.detectMultiScale(greyLena, faces, 1.09, 3, Objdetect.CASCADE_SCALE_IMAGE, new Size(30, 30));
|
||||
assertEquals(1, faces.size());
|
||||
}
|
||||
|
||||
|
@@ -1,11 +1,11 @@
|
||||
package org.opencv.test.video;
|
||||
|
||||
import org.opencv.core.Core;
|
||||
import org.opencv.core.CvType;
|
||||
import org.opencv.core.Mat;
|
||||
import org.opencv.core.Size;
|
||||
import org.opencv.core.Core;
|
||||
import org.opencv.video.Video;
|
||||
import org.opencv.test.OpenCVTestCase;
|
||||
import org.opencv.video.Video;
|
||||
|
||||
public class videoTest extends OpenCVTestCase {
|
||||
|
||||
@@ -66,7 +66,7 @@ public class videoTest extends OpenCVTestCase {
|
||||
Mat prevPts = new Mat(1, 3, CvType.CV_32FC2);
|
||||
prevPts.put(0, 0, 1.0, 1.0, 5.0, 5.0, 10.0, 10.0);
|
||||
|
||||
Size sz = new Size(5, 5);
|
||||
Size sz = new Size(3, 3);
|
||||
Video.calcOpticalFlowPyrLK(subLena1, subLena2, prevPts, nextPts, status, err, sz);
|
||||
assertEquals(0, Core.countNonZero(status));
|
||||
}
|
||||
|
@@ -4,6 +4,7 @@ classes_ignore_list = (
|
||||
'OpenCV(Test)?Case',
|
||||
'OpenCV(Test)?Runner',
|
||||
'CvException',
|
||||
'CvType'
|
||||
)
|
||||
|
||||
funcs_ignore_list = (
|
||||
|
Reference in New Issue
Block a user