Skip to content
GitLab
Projects Groups Snippets
  • /
  • Help
    • Help
    • Support
    • Community forum
    • Submit feedback
    • Contribute to GitLab
  • Sign in / Register
  • S Slam
  • Project information
    • Project information
    • Activity
    • Labels
    • Members
  • Repository
    • Repository
    • Files
    • Commits
    • Branches
    • Tags
    • Contributors
    • Graph
    • Compare
  • Issues 4
    • Issues 4
    • List
    • Boards
    • Service Desk
    • Milestones
  • Merge requests 15
    • Merge requests 15
  • CI/CD
    • CI/CD
    • Pipelines
    • Jobs
    • Schedules
  • Deployments
    • Deployments
    • Environments
    • Releases
  • Packages and registries
    • Packages and registries
    • Container Registry
  • Monitor
    • Monitor
    • Incidents
  • Analytics
    • Analytics
    • Value stream
    • CI/CD
    • Repository
  • Wiki
    • Wiki
  • Snippets
    • Snippets
  • Activity
  • Graph
  • Create a new issue
  • Jobs
  • Commits
  • Issue Boards
Collapse sidebar
  • KEU-ComputerVision
  • Slam
  • Merge requests
  • !57

[WIP] Extract less map keypoints for faster KD-Tree operations

  • Review changes

  • Download
  • Email patches
  • Plain diff
Open Nicolas Cadart requested to merge perf/ExtractLessMapKeypoints into master Oct 30, 2020
  • Overview 1
  • Commits 2
  • Pipelines 2
  • Changes 3

Resolves #11 (closed).

The goal of this MR is to extract less maps keypoints in order to achieve faster KD-Tree building and NN queries.

To do that, the new behavior is :

  • mark all voxel where current keypoints lie
  • see the voxel grid as a 3d image encoding "votes" for each voxel, and dilate/blur these votes by a convolution with a (3, 3, 3) kernel
  • take the points from all voxels that have a score high enough

This extracts indeed much less keypoints in some situations while preserving same results. However, convolutions with Eigen::Tensor looks quite slow. Therefore, I wonder if there is really a speedup when we have to convolve the entire rolling grid...

@nick.laurenson @julia.sanchez

Assignee
Assign to
Reviewers
Request review from
Time tracking
Source branch: perf/ExtractLessMapKeypoints