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