Java API: Fixed typo

This commit is contained in:
Andrey Kamaev 2011-08-02 15:14:13 +00:00
parent f1d24e1868
commit 257c0bf413

View File

@ -111,7 +111,7 @@ public class Converters {
case CvType.CV_32F:
{
res = new Mat(count, 1, CvType.CV_64FC3);
res = new Mat(count, 1, CvType.CV_32FC3);
float[] buff = new float[count*3];
for(int i=0; i<count; i++) {
Point3 p = pts.get(i);