We are about to switch to a new forum software. Until then we have removed the registration on this forum.
Ciao everyone!
I am tring to have an oc-tree from pointclouds of kinect. Problem I had, was convert the
kinect.depthMapRealWorld()
that is PVector array, to a Vec3D because I am usin Toxiclibs library. Finally I have a Vec3D array with all points inside. Now I have another big problem. If I use
tree.addAll(new ArrayList(toxVecs.length));
it draw me only one cube of the octree and not all points. Instead if i write
for (int i = 0; i < toxVecs.length-1; i++)
{
tree.addPoint(toxVecs[i]);
}
i receive the "Java heap error"!! toxVecs [] is my array with all pointclouds inside.
Help me please, don't leave me alone!
Thank you, Dam
Comments
http://forum.processing.org/two/discussion/10781/java-heap-space-error