Skip to content

pcrresearch/GRIP

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

3 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

GRIP

Implementation of the GRIP algorithm: Global Initializer for Point Cloud Registration.

Installation

pip install gripcd

Basic Usage

  • Pairwise:
from grip import PairwiseGRIP, icp

estimator = PairwiseGRIP(icp)
T_s2m_hat = estimator(sources, models)
# or
registered_sources, registered_models = estimator.register(sources, models)
  • Generative multiview:
from grip import GenerativeMultiviewsGRIP, ChamferJRMPC

estimator = GenerativeMultiviewsGRIP(ChamferJRMPC())
estimator(views)
T_hat = estimator.T_hat

About

Implementation of the GRIP algorithm: Global Initializer for Point Cloud Registration.

Resources

Stars

Watchers

Forks

Releases

No releases published

Packages

 
 
 

Contributors

Languages