Skip to content
Snippets Groups Projects

Feature/costmap to memory

Merged Fabian Reister requested to merge feature/costmap-to-memory into master
1 unresolved thread

Merge request reports

Loading
Loading

Activity

Filter activity
  • Approvals
  • Assignees & reviewers
  • Comments (from bots)
  • Comments (from users)
  • Commits & branches
  • Edits
  • Labels
  • Lock status
  • Mentions
  • Merge request status
  • Tracking
32 inline Costmap::Mask
33 fronAron(const aron::data::NDArray& nav)
34 {
35 return aron::converter::AronEigenConverter::ConvertToDynamicMatrix<
36 Costmap::Mask::value_type>(nav);
37 }
38
39 void
40 toAron(arondto::Costmap& dto, const Costmap& bo)
41 {
42 dto.cellSize = bo.params().cellSize;
43
44 dto.frame = armarx::GlobalFrame;
45 dto.origin = conv::to3D(bo.getSceneBounds().min);
46
47 dto.toAron()->addElement("mask", toAron(bo.getMask()));
  • Fabian Reister added 1 commit

    added 1 commit

    Compare with previous version

  • Fabian Reister mentioned in commit e094bf2b

    mentioned in commit e094bf2b

  • Please register or sign in to reply
    Loading