pushMatrix(); translate(20,20,0); scale(40,40,40); gfx.mesh(mesh,true); popMatrix(); } </script> <canvas id="myCanvas" width="500" height="500"> <p>Your browser does not support the canvas tag.</p> <!-- Note: you can put any alternative content here. --> </canvas> <noscript> <p>JavaScript is required to view the contents of this page.</p> </noscript> </body> </html>
I would like to know if anyone has an efficient method for separating overlapping blobs based on depth values from the kinect. Background subtraction and depth limiting to find blobs is fairly straightforward, however if two blobs overlap, but are at different distances, I would like to separate them. What might be a good approach to accomplish this? some type of edge detection perhaps?