# sofima **Repository Path**: mirrors_google-research/sofima ## Basic Information - **Project Name**: sofima - **Description**: Scalable Optical Flow-based Image Montaging and Alignment - **Primary Language**: Unknown - **License**: Apache-2.0 - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2022-03-07 - **Last Updated**: 2026-01-24 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # SOFIMA SOFIMA (Scalable Optical Flow-based Image Montaging and Alignment) is a tool for stitching, aligning and warping large 2d, 3d and 4d microscopy datasets. [![License](https://img.shields.io/badge/License-Apache%202.0-blue.svg)](https://opensource.org/licenses/Apache-2.0) This is not an officially supported Google product. # Installation SOFIMA is implemented purely in Python, and does not require a build step. To install it directly from the repository, run: ```shell pip install git+https://github.com/google-research/sofima ``` # Overview SOFIMA uses optical flow regularized with an elastic mesh to establish maps between data in different coordinate systems. Both the [flow estimator](flow_field.py) as well as the [mesh solver](mesh.py) are implemented in [JAX](https://github.com/google/jax) and will automatically take advantage of GPU acceleration if the hardware if available. A core data structure used throughout the project is a *coordinate map* stored as a dense array of relative offsets (see the module docstring in [map_utils.py](map_utils.py) for details). Among other uses, this is the representation of the estimated flow fields and the mesh node positions. # Example usage * [electron microscopy tile stitching](https://colab.research.google.com/github/google-research/sofima/blob/main/notebooks/em_stitching.ipynb) * [electron microscopy section alignment](https://colab.research.google.com/github/google-research/sofima/blob/main/notebooks/em_alignment.ipynb) # License Licensed under the Apache License, Version 2.0 (the "License"); you may not use this software except in compliance with the License. You may obtain a copy of the License at . Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.