Skip to content

Commit

Permalink
test: change innovusion frame to more standard lidar frame
Browse files Browse the repository at this point in the history
Signed-off-by: David Wong <[email protected]>
  • Loading branch information
drwnz committed Dec 25, 2023
1 parent 743b544 commit 7153664
Showing 1 changed file with 6 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -77,9 +77,12 @@ void InnovusionDecoder::point_xyz_data_parse_(bool is_en_data, bool is_use_refl,

point.time_stamp = point_ptr->ts_10us / ten_us_in_second_c + current_ts_start_;
point.distance = point_ptr->radius;
point.x = point_ptr->x;
point.y = point_ptr->y;
point.z = point_ptr->z;
// point.x = point_ptr->x;
// point.y = point_ptr->y;
// point.z = point_ptr->z;
point.x = point_ptr->z;
point.y = -(point_ptr->y);
point.z = point_ptr->x;
decode_pc_->points.emplace_back(point);
}
}
Expand Down

0 comments on commit 7153664

Please sign in to comment.