|
so seems it's possible, thank you!! can you explain me more??
in my code I use
DepthImageFrame
imageFrame = e.OpenDepthImageFrame();
if
(imageFrame != null)
{
var depthArray = imageFrame.ToDepthArray();
}
so I have an array of depth for every single point.
How can I collect the relatives x and y points ?
and after that, how can I plot them to see a point cloud?? is there any function to do it in visual studio? or should I have to collect the pooint into a txt and plot them in matlab??
thank you for the answer and the patience ;)
|