Commit 257c0bf4 authored by Andrey Kamaev's avatar Andrey Kamaev

Java API: Fixed typo

parent f1d24e18
......@@ -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);
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment