Skip to main content

pyFM - Python Functional Maps Library

animated

PyPI version Python versions License: MIT Tests Documentation

This package contains a comprehensive Python implementation for shape correspondence using functional maps, featuring code from multiple papers.

Full API documentation is available online.

Core Features

  • Complete TriMesh class with geometric measures (geodesics, normals, LBO projections, differential operators)
  • Fast Laplace-Beltrami Operator implementation
  • Shape descriptors (HKS, WKS) with flexible parameter control
  • Efficient correspondence refinement (ICP, ZoomOut)
  • Fast functional-to-pointwise map conversion
  • Functional Map Network utilities

Installation

pip install pyfmaps

# with the optional PyVista-based plotting helpers used in the gallery
pip install 'pyfmaps[viz]'

Key Dependencies

Requires Python 3.10+ and: numpy, scipy, tqdm, scikit-learn, potpourri3d (geodesic distances via the heat and fast-marching methods), and robust_laplacian (Delaunay/tufted Laplacian). All are installed automatically.

Quickstart

from pyFM.mesh import TriMesh
from pyFM.functional import FunctionalMapping

# Load a source and a target mesh
mesh1 = TriMesh.load("cat.off", area_normalize=True, center=True)
mesh2 = TriMesh.load("lion.off", area_normalize=True, center=True)

# Compute the LBO spectrum + descriptors, then fit a functional map.
# Keep w_orient above 0: descriptors alone cannot tell left from right,
# and w_orient=0 (the default) usually returns a symmetry-flipped map.
model = FunctionalMapping(mesh1, mesh2)
model.preprocess(descr_type="WKS", subsample_step=2, verbose=True)
model.fit(K=30, w_descr=1e0, w_lap=1e-1, w_dcomm=1e0, w_orient=1e0, verbose=True)

# Convert the functional map to a point-to-point map (mesh2 -> mesh1)
p2p_21 = model.get_p2p()

# Refine the map -- this is where most of the accuracy comes from
FM_zo = model.zoomout_refine(nit=16, step=5)
p2p_21_zo = model.get_p2p(FM_zo)

See the example gallery for complete, runnable workflows with interactive 3D figures.

Design Philosophy

This codebase prioritizes readability and adaptability over rigid modularity. The implementation seeks to make it easy to:

  • Read and understand the underlying algorithms
  • Copy and modify code snippets for your research
  • Experiment with and extend existing methods
  • Avoid rewriting core functionality from scratch

Under the hood, core algorithms are implemented as standalone functions operating on basic numpy arrays. This dual-layer design means you can use the high-level interface for standard workflows, but still easily extract and modify the core functions for your research, as they work with simple numpy arrays.

While this approach differs from highly modular packages like scikit-learn, it better serves researchers who need to modify and build upon existing shape correspondence methods.

This design choice comes with some trade-offs:

  • Less abstraction means potentially more code to achieve certain tasks
  • Users need some familiarity with shape correspondence concepts
  • Implementation favors explicit algorithms over general-purpose interfaces

I selected this approach from my personal experience with research codebases and may not suit everyone's needs. More generic and abstracted implementations of geometric processing can be expected to appear soonish in the scikit-shapes or geomstats libraries.

Notation Convention

  • Functional maps (FM_12): mesh1 → mesh2
  • Pointwise maps (p2p_21): mesh2 → mesh1

Documentation & Examples

Implemented Papers

This library implements methods from several key papers in shape correspondence, including:

Torch Version

Most functions in this package can easily be translated to torch. However, for clarity of the code, a separate version will be released.

For now, the torch implementations can be found in different githubs (see my GitHub profile).

Coming Soon

Contact and Citation

You can contact me for any questions or requests at robin.magnet@inria.fr

This package has not (yet) been presented as a paper in itself, although all my works heavily rely on this.

If you use this package or copy and paste parts of it for you experiments, please cite this github or one of the following paper. Note these papers never directly refer to pyfmaps as so I am fine with you only citing the github for now.

@inproceedings{magnetDWKSLocalDescriptor2021,
  title = {{{DWKS}} : {{A Local Descriptor}} of {{Deformations Between Meshes}} and {{Point Clouds}}},
  shorttitle = {{{DWKS}}},
  booktitle = {2021 {{IEEE}}/{{CVF International Conference}} on {{Computer Vision}} ({{ICCV}})},
  author = {Magnet, Robin and Ovsjanikov, Maks},
  publisher = {IEEE},
}


@inproceedings{magnetSmoothNonRigidShape2022,
  title = {Smooth {{Non-Rigid Shape Matching}} via {{Effective Dirichlet Energy Optimization}}},
  booktitle = {2022 {{International Conference}} on {{3D Vision}} ({{3DV}})},
  author = {Magnet, Robin and Ren, Jing and {Sorkine-Hornung}, Olga and Ovsjanikov, Maks},
  year = {2022},
  publisher = {{IEEE}},

}

@article{magnetScalableEfficientFunctional2023,
  title = {Scalable and {{Efficient Functional Map Computations}} on {{Dense Meshes}}},
  author = {Magnet, Robin and Ovsjanikov, Maks},
  year = {2023},
  journal = {Computer Graphics Forum},
}

Download files

Download the file for your platform. If you're not sure which to choose, learn more about installing packages.

Source Distribution

pyfmaps-1.3.0.tar.gz (3.4 MB view details)

Uploaded Source

Built Distribution

If you're not sure about the file name format, learn more about wheel file names.

pyfmaps-1.3.0-py3-none-any.whl (512.5 kB view details)

Uploaded Python 3

File details

Details for the file pyfmaps-1.3.0.tar.gz.

File metadata

  • Download URL: pyfmaps-1.3.0.tar.gz
  • Upload date:
  • Size: 3.4 MB
  • Tags: Source
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyfmaps-1.3.0.tar.gz
Algorithm Hash digest
SHA256 61dafc4029304307c6bb018bc87685c2f80861a5f75b6a4aac9feeefd96a3043
MD5 102b28e4eb81a06788a09ff14d978a99
BLAKE2b-256 c607579864865bfc11efc9d5af1f0028d793170adb5cf5ce546e8bc29748e35d

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfmaps-1.3.0.tar.gz:

Publisher: test_and_deploy.yml on RobinMagnet/pyFM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

File details

Details for the file pyfmaps-1.3.0-py3-none-any.whl.

File metadata

  • Download URL: pyfmaps-1.3.0-py3-none-any.whl
  • Upload date:
  • Size: 512.5 kB
  • Tags: Python 3
  • Uploaded using Trusted Publishing? Yes
  • Uploaded via: twine/7.0.0 CPython/3.13.14

File hashes

Hashes for pyfmaps-1.3.0-py3-none-any.whl
Algorithm Hash digest
SHA256 754809e648b2cf3d3059aba7706ed906346846955db78cb321654ad5e9945f1d
MD5 e30ec9c0d897a97beb38870a503954a0
BLAKE2b-256 14ddd9979918b03936f038291ac948c38f3090a954c896a69b216bcc68a1be63

See more details on using hashes here.

Provenance

The following attestation bundles were made for pyfmaps-1.3.0-py3-none-any.whl:

Publisher: test_and_deploy.yml on RobinMagnet/pyFM

Attestations: Values shown here reflect the state when the release was signed and may no longer be current.

Release history Release notifications | RSS feed

This release

1.3.0 This release

2 files

1.2.0

2 files

1.1.1

2 files

1.1.0

2 files

1.0.1

2 files

1.0.0

2 files

Anthropic, PBC Visionary sponsor Bloomberg Visionary sponsor Hudson River Trading Visionary sponsor Meta Visionary sponsor NVIDIA Visionary sponsor Microsoft Sustainability sponsor Depot Continuous Integration AWS Cloud computing and Security Sponsor Datadog Monitoring Fastly CDN Google Download Analytics Sentry Error logging StatusPage Status page