This repository was archived by the owner on Aug 22, 2024. It is now read-only.

Description
Hello.
In fastpointcloud example, why are not all points(512x512) valid? Is it because there are places in the image sensor that can not receive light?
`
k4a_calibration_2d_to_3d(
calibration, &p, 1.f, K4A_CALIBRATION_TYPE_DEPTH, K4A_CALIBRATION_TYPE_DEPTH, &ray, &valid);
if (valid)
{
table_data[idx].xy.x = ray.xyz.x;
table_data[idx].xy.y = ray.xyz.y;
}
else
{
table_data[idx].xy.x = nanf("");
table_data[idx].xy.y = nanf("");
}
`