2011-07-07 22:35:12 +08:00
|
|
|
package org.opencv.test.objdetect;
|
|
|
|
|
2011-07-16 19:25:33 +08:00
|
|
|
import org.opencv.test.OpenCVTestCase;
|
2011-07-18 21:50:36 +08:00
|
|
|
|
2011-08-05 16:39:28 +08:00
|
|
|
public class ObjdetectTest extends OpenCVTestCase {
|
2011-08-02 21:47:40 +08:00
|
|
|
|
2011-08-15 15:03:22 +08:00
|
|
|
public void testGroupRectanglesListOfRectListOfIntegerInt() {
|
|
|
|
fail("Not yet implemented");
|
2012-04-14 05:50:59 +08:00
|
|
|
/*
|
|
|
|
final int NUM = 10;
|
|
|
|
MatOfRect rects = new MatOfRect();
|
|
|
|
rects.alloc(NUM);
|
2011-08-02 21:47:40 +08:00
|
|
|
|
2012-04-14 05:50:59 +08:00
|
|
|
for (int i = 0; i < NUM; i++)
|
|
|
|
rects.put(i, 0, 10, 10, 20, 20);
|
2011-08-02 21:47:40 +08:00
|
|
|
|
|
|
|
int groupThreshold = 1;
|
2011-08-15 15:03:22 +08:00
|
|
|
Objdetect.groupRectangles(rects, null, groupThreshold);//TODO: second parameter should not be null
|
2012-04-14 05:50:59 +08:00
|
|
|
assertEquals(1, rects.total());
|
|
|
|
*/
|
2011-08-02 21:47:40 +08:00
|
|
|
}
|
|
|
|
|
2011-08-15 15:03:22 +08:00
|
|
|
public void testGroupRectanglesListOfRectListOfIntegerIntDouble() {
|
|
|
|
fail("Not yet implemented");
|
2012-04-14 05:50:59 +08:00
|
|
|
/*
|
|
|
|
final int NUM = 10;
|
|
|
|
MatOfRect rects = new MatOfRect();
|
|
|
|
rects.alloc(NUM);
|
2011-08-02 21:47:40 +08:00
|
|
|
|
2012-04-14 05:50:59 +08:00
|
|
|
for (int i = 0; i < NUM; i++)
|
|
|
|
rects.put(i, 0, 10, 10, 20, 20);
|
2012-10-17 15:12:04 +08:00
|
|
|
|
2012-04-14 05:50:59 +08:00
|
|
|
for (int i = 0; i < NUM; i++)
|
|
|
|
rects.put(i, 0, 10, 10, 25, 25);
|
2011-08-02 21:47:40 +08:00
|
|
|
|
|
|
|
int groupThreshold = 1;
|
|
|
|
double eps = 0.2;
|
2011-08-15 15:03:22 +08:00
|
|
|
Objdetect.groupRectangles(rects, null, groupThreshold, eps);//TODO: second parameter should not be null
|
2011-08-02 21:47:40 +08:00
|
|
|
assertEquals(2, rects.size());
|
2012-04-14 05:50:59 +08:00
|
|
|
*/
|
2011-08-02 21:47:40 +08:00
|
|
|
}
|
2011-07-07 22:35:12 +08:00
|
|
|
}
|