GitPedia
MIT-SPARK

MIT-SPARK/KISS-Matcher

KISS-Matcher: Fast, Robust, and Scalable Registration + ROS2 SLAM examples

7 Releases
Latest: 1mo ago
KISS-Matcher v1.0.2v1.0.2Latest
LimHyungTaeLimHyungTae·1mo ago·May 10, 2026
GitHub

📋 What changed

  • \`kiss_matcher.__version__\` is now derived from the installed package
  • metadata (\`importlib.metadata.version(\"kiss_matcher\")\`) instead of a
  • hardcoded string. v1.0.0 and v1.0.1 both reported \`__version__ == \"1.0.0\"\`
  • at runtime regardless of the actual installed version; v1.0.2 fixes that
  • drift and any future bump is reflected automatically.

📋 No API changes

  • Same wheels, same coverage as v1.0.1.
KISS-Matcher v1.0.1v1.0.1
LimHyungTaeLimHyungTae·1mo ago·May 10, 2026
GitHub

📋 What changed

  • \`viser\` moved from required dependencies to the \`[viz]\` extra.
  • Default \`pip install kiss-matcher\` no longer pulls in trimesh, scipy,
  • networkx, shapely, embreex, jsonschema, httpx, and ~20 other transitive
  • packages. Install with the visualization extra when needed:
  • \`pip install kiss-matcher[viz]\`.
  • New self-contained quickstart at \`python/examples/quickstart.py\` that
  • works with no external data and no viser. Generates a synthetic point
  • cloud, applies a known rigid transform, and verifies KISS-Matcher
  • + 1 more

📋 No API changes

  • The Python API (\`KISSMatcher\`, \`KISSMatcherConfig\`, \`RegistrationSolution\`)
  • is identical to v1.0.0; this release is purely a packaging slim-down.

📦 Same platform coverage

  • Wheels for Linux \`manylinux_2_28+\` x86_64 and macOS arm64 (macOS 14+),
  • Python 3.8 through 3.12. Source distribution available for everything else.
KISS-Matcher v1.0.0v1.0.0
LimHyungTaeLimHyungTae·1mo ago·May 9, 2026
GitHub

📦 Install

  • \`\`\`bash
  • pip install kiss-matcher
  • \`\`\`
  • Wheels are published for:
  • Linux \`manylinux_2_28+\` x86_64 (works on any Linux with glibc ≥ 2.28: Ubuntu 20.04+, Debian 11+, RHEL 9+, etc.)
  • macOS arm64 (macOS 14+, Apple Silicon)
  • Python 3.8, 3.9, 3.10, 3.11, 3.12
  • Each wheel ships its own copy of oneTBB, OpenMP, lz4, and flann — no system installation needed.
  • + 1 more

📦 What's bundled

  • KISS-Matcher core (FasterPFH + ROBINMatching + GncSolver pipeline)
  • ROBIN [v.1.2.7](https://github.com/MIT-SPARK/ROBIN/releases/tag/v.1.2.7) (with [MIT-SPARK/pmc](https://github.com/MIT-SPARK/pmc) fork pinned for upcoming Windows MSVC support)
  • oneTBB 2022, Eigen 3, lz4, flann

📦 Quickstart

  • \`\`\`python
  • import kiss_matcher as km
  • import numpy as np
  • config = km.KISSMatcherConfig(voxel_size=0.3)
  • matcher = km.KISSMatcher(config)
  • src = np.random.rand(1000, 3).astype(np.float32)
  • tgt = np.random.rand(1000, 3).astype(np.float32)
  • solution = matcher.estimate(src, tgt)
  • + 1 more

📦 Notes

  • Windows wheels are not yet available; ROBIN's \`src/pkc.cpp\` uses GCC builtin atomics and \`size_t\` OpenMP \`for\` indices that MSVC's OpenMP 2.0 rejects. Patch coming in a follow-up release.
  • Source distribution is also published, so \`pip install --no-binary :all: kiss-matcher\` works on any POSIX system with the build dependencies.
v0.3.0
LimHyungTaeLimHyungTae·1y ago·April 8, 2025
GitHub

📋 What's Changed

  • [Pull Request] Add ROS2 Visualization for KISS-Matcher by @kimdaebeom in https://github.com/MIT-SPARK/KISS-Matcher/pull/29
  • ros2 build and warnings fixes. by @ewak in https://github.com/MIT-SPARK/KISS-Matcher/pull/31
  • Fix/sudo issue by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/34
  • Feature/mw/cmake and memory fixes by @ewak in https://github.com/MIT-SPARK/KISS-Matcher/pull/33
  • Feature/support other extensions by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/35
  • Feature/ros2 slam by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/41
  • Feature/ros2 dummy loop detector by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/42
  • Feature/tictok by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/43
  • + 6 more

New Contributors

  • @kimdaebeom made their first contribution in https://github.com/MIT-SPARK/KISS-Matcher/pull/29
  • @ewak made their first contribution in https://github.com/MIT-SPARK/KISS-Matcher/pull/31
  • @LihanChen2004 made their first contribution in https://github.com/MIT-SPARK/KISS-Matcher/pull/48
  • Full Changelog: https://github.com/MIT-SPARK/KISS-Matcher/compare/v0.2.0...v0.3.0
v0.2.0
LimHyungTaeLimHyungTae·1y ago·February 23, 2025
GitHub

📋 What's Changed

  • Feature/pybind by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/19
  • Filter NaN values before registration by @fdila in https://github.com/MIT-SPARK/KISS-Matcher/pull/16
  • Fix/account nan by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/20
  • Introducing an Auto-Comment Feature to Handle Inappropriate or Anonymous Interactions by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/21
  • Feature/usability in backend by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/27
  • Feature/prune and matching by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/28

New Contributors

  • @fdila made their first contribution in https://github.com/MIT-SPARK/KISS-Matcher/pull/16
  • Full Changelog: https://github.com/MIT-SPARK/KISS-Matcher/compare/v0.1.1...v0.2.0
v0.1.1
LimHyungTaeLimHyungTae·1y ago·February 18, 2025
GitHub

📋 What's Changed

  • Fix LICENSE by @tizianoGuadagnino in https://github.com/MIT-SPARK/KISS-Matcher/pull/12
  • Feature/enhance usability by @LimHyungTae in https://github.com/MIT-SPARK/KISS-Matcher/pull/15

New Contributors

  • @tizianoGuadagnino made their first contribution in https://github.com/MIT-SPARK/KISS-Matcher/pull/12
  • @LimHyungTae made their first contribution in https://github.com/MIT-SPARK/KISS-Matcher/pull/15
  • Full Changelog: https://github.com/MIT-SPARK/KISS-Matcher/compare/v0.1.0...v0.1.1
v0.1.0
LimHyungTaeLimHyungTae·1y ago·February 17, 2025
GitHub

Initial upload (C++ is now fully supported)!