This project is still in an alpha stage. Expect rapid changes, incomplete features, and possible breaking updates between releases.
- The API may evolve as we stabilize core functionality.
- Documentation and examples are incomplete.
- Feedback and bug reports are especially valuable at this stage.
- The Torch GPU solver now uses the CPU component order (
u→v→w, wherewis the z component) and CPU-compatible 3-D cubic (tricubic) interpolation. On the canonical benchmark this improves GPU EPE to 0.575085 versus 0.573684 on CPU. Results are not bit-exact because red-black spatial ordering, pyramid resizing, and median-filter boundaries still differ; on that benchmark, this corrected GPU path is also slower than the previous stock GPU solver.
Python implementation of volumetric optical flow for motion correction in 3D fluorescence microscopy. Building on the 2D Flow-Registration insights, flowreg3D provides natively 3D dense motion analysis and correction with subpixel-precision for non-rigid motion volumetric microscopy data.
Related projects
- Flow-Registration: https://github.com/FlowRegSuite/flow_registration
- PyFlowReg: https://github.com/FlowRegSuite/pyflowreg
- ImageJ/Fiji plugin: https://github.com/FlowRegSuite/flow_registration_IJ
- Napari plugin: https://github.com/FlowRegSuite/napari-flowreg
Alignment of two 2P imaging stacks with difficult, synthetic non-rigid motion patterns.
- 3D Variational Optical Flow: Directly estimates dense 3D motion fields between volumetric frames, capturing complex non-rigid deformations with subpixel accuracy.
- GPU Acceleration: Optional torch backend with a GPU-optimized solver and CPU-compatible 3-D cubic (tricubic) interpolation for large volumetric frames.
- Parallelized Processing: Efficiently handles long sequences of volumetric data.
This code requires python 3.10 or higher.
Initialize the environment with
conda create --name flowreg3d python=3.10
conda activate flowreg3d
pip install -r requirements.txtconda create --name flowreg3d python=3.10
conda activate flowreg3d
pip install flowreg3dInstall the Torch GPU backend, including its 3-D cubic (tricubic) interpolation support, with the gpu extra:
pip install flowreg3d[gpu][Examples and notebooks coming soon]
The plugin supports most of the commonly used file types such as HDF5, tiff stacks and matlab mat files. To run the motion compensation, the options need to be defined into a OF_options object.
The 3D motion benchmark dataset used for our evaluations will be available for download soon. Meanwhile, synthetic test data with controllable 3D motion fields can be generated using the included motion_generation module, which creates biologically-informed displacement patterns including injection/recoil events, rotations, scanning jitter, and other microscopy-specific artifacts.
If you use parts of this code or the plugin for your work, please cite
"flowreg3D: Volumetric optical flow for motion analysis and correction in 3D fluorescence microscopy," (in preparation), 2025.
flowreg3D Non-commercial License
Copyright (c) 2025 Okinawa Institute of Science and Technology Graduate University. All rights reserved.
Redistribution and use for non-commercial purposes in source and binary forms, with or without modification, are permitted provided that the following conditions are met:
-
The software is used solely for non-commercial purposes. It may not be used indirectly for commercial use, including operation on or for a website or service that receives advertising, sponsorship, or other revenue. For commercial use rights, contact Okinawa Institute of Science and Technology, OIST Innovation, at tls@oist.jp.
-
Redistributions of source code must retain the above copyright notice, this list of conditions and the following disclaimer.
-
Redistributions in binary form must reproduce the above copyright notice, this list of conditions and the following disclaimer in the documentation and/or other materials provided with the distribution.
-
Neither the name of the Okinawa Institute of Science and Technology Graduate University nor the names of its contributors may be used to endorse or promote products derived from this software without specific prior written permission.
THIS SOFTWARE IS PROVIDED BY THE OKINAWA INSTITUTE OF SCIENCE AND TECHNOLOGY GRADUATE UNIVERSITY AND CONTRIBUTORS “AS IS” AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE, AND NON-INFRINGEMENT OF PATENTS, TRADEMARKS, OR OTHER PROPRIETARY RIGHTS, ARE DISCLAIMED. NO PATENT RIGHTS ARE GRANTED, WHETHER EXPRESSLY, BY IMPLICATION, ESTOPPEL, OR OTHERWISE. IN NO EVENT SHALL THE OKINAWA INSTITUTE OF SCIENCE AND TECHNOLOGY GRADUATE UNIVERSITY OR CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
