Skip to content

Commit

Permalink
wrong copy direction
Browse files Browse the repository at this point in the history
  • Loading branch information
StRigaud committed Jul 21, 2023
1 parent 67b7c9c commit 5df47ab
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions clic/src/tier5.cpp
Original file line number Diff line number Diff line change
Expand Up @@ -54,12 +54,12 @@ connected_components_labeling_box_func(const Device::Pointer & device, const Arr
}
if (iteration_count % 2 == 0)
{
dst->copy(temp1);
temp1->copy(dst);
// tier4::relabel_sequential_func(device, temp1, dst, 4096);
}
else
{
dst->copy(temp2);
temp2->copy(dst);
// tier4::relabel_sequential_func(device, temp2, dst, 4096);
}
return dst;
Expand Down

0 comments on commit 5df47ab

Please sign in to comment.