Player index + blur mask (pointcloud)

Player index + Blur Mask

Hello everyone

I am currently working on a project that uses the player index feature on the kinect azure.

In the project I am combining the pointcloud data and the player index so I can create some interactive elements.

I would really like to smooth out the player index mask, but if I but a blur on, it effects the pointcloud data, throwing the instance image out.

might anyone be able to point me in the right direction of creating a blur, which smooths out the mask but does not effect the pointcloud depth info?

hope the makes sense

I’m not entirely sure how you’re combining the player index and point cloud images, but yeah any traditional 2d blur on the point cloud will likely pull points out of the background into the player.

You may need to add additional filters to ignore points that are outside of the range where you expect your players i.e. if your players are around 2 meters from the camera, you could maybe exclude all values greater than 3 or 3.5.

You could also consider some 3D edge detection and look for large jumps in the distance values of your point cloud as the edge around the person and exclude those from the blur.

Hope that is useful.