check for not equal instead of check against NaN

This commit is contained in:
Michael Bleyer 2019-04-15 12:00:31 -07:00
Родитель b5b85892e9
Коммит f15ac8fe1e
1 изменённых файлов: 1 добавлений и 1 удалений

Просмотреть файл

@ -104,7 +104,7 @@ static k4a_result_t transformation_compute_correspondence(const int depth_index,
const k4a_transformation_rgbz_context_t *context,
k4a_correspondence_t *correspondence)
{
if (depth == 0 || context->xy_tables->x_table[depth_index] == NAN)
if (depth == 0 || (context->xy_tables->x_table[depth_index] != context->xy_tables->x_table[depth_index]))
{
memset(correspondence, 0, sizeof(k4a_correspondence_t));
return K4A_RESULT_SUCCEEDED;