check for not equal instead of check against NaN
This commit is contained in:
Родитель
b5b85892e9
Коммит
f15ac8fe1e
|
@ -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;
|
||||
|
|
Загрузка…
Ссылка в новой задаче