Coverage for kwave/reconstruction/__init__.py: 100%
2 statements
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-24 12:06 -0700
« prev ^ index » next coverage.py v7.7.1, created at 2025-03-24 12:06 -0700
1"""
2Time reversal reconstruction module for k-Wave.
4This module provides functionality for time reversal reconstruction in photoacoustic imaging.
5The main class is TimeReversal which handles the reconstruction process using time reversal
6of the acoustic wave equation.
7"""
9from kwave.reconstruction.time_reversal import TimeReversal
11__all__ = ["TimeReversal"]