Papers
Topics
Authors
Recent
Search
2000 character limit reached

CellINR: Implicit Reconstruction in Live Cell Imaging

Updated 9 July 2026
  • CellINR is a self-supervised reconstruction framework that models 3D cell volumes as continuous coordinate-to-intensity functions using implicit neural representations.
  • It integrates blind convolution and structural amplification to effectively separate structured photo-induced artifacts from genuine biological signals.
  • Designed for long-term 4D live fluorescence microscopy, CellINR enhances image continuity and supports quantitative analysis of cellular morphology.

Searching arXiv for the CellINR paper and closely related microscopy-INR work to ground the article in current literature. CellINR is a self-supervised, case-specific reconstruction framework for removing photo-induced artifacts from 4D live fluorescence microscopy while preserving true cellular structure. It is presented as an implicit neural representation-based approach that treats a 3D cell volume as a continuous coordinate-to-intensity function rather than as a discrete voxel grid, with the explicit aim of overcoming photobleaching- and phototoxicity-induced degradation that compromises image continuity and detail recovery during prolonged live imaging (Zhao et al., 25 Aug 2025). The framework combines positional encoding, blind convolution, structural amplification, and a hybrid reconstruction-plus-regularization objective to separate genuine biological signals from artifacts in a setting where pixel-aligned clean ground truth is often unavailable (Zhao et al., 25 Aug 2025).

1. Problem setting and motivation

CellINR is motivated by a central limitation of long-term 4D live fluorescence microscopy: the same specimen is repeatedly scanned across time, and each 3D volume is formed by layer-by-layer optical sectioning under prolonged, high-intensity illumination (Zhao et al., 25 Aug 2025). The reported consequences are photobleaching, which causes fluorophores to decay and the signal-to-noise ratio to fall over time, and phototoxicity, which can damage cells and alter their behavior (Zhao et al., 25 Aug 2025).

The framework distinguishes these degradations from ordinary random noise. According to the paper, photo-induced artifacts are spatially structured and temporally systematic: local attenuation is non-uniform, drift can accumulate over time, and pseudo-signals or background structures may appear (Zhao et al., 25 Aug 2025). This makes the restoration problem harder than conventional denoising, because methods that suppress high-frequency noise may fail to remove low-frequency artifact patterns, while some approaches may also destroy genuine biological continuity (Zhao et al., 25 Aug 2025).

A further difficulty is the scarcity of pixel-aligned clean targets in microscopy datasets, which limits the applicability of standard supervised learning (Zhao et al., 25 Aug 2025). CellINR addresses this by optimizing each cell volume individually in a self-supervised manner. This suggests that the framework is designed less as a generic feed-forward denoiser and more as a reconstruction method that exploits the internal structure of a single acquisition (Zhao et al., 25 Aug 2025).

2. Implicit representation and continuous volume modeling

The representational core of CellINR is an implicit neural representation (INR), defined as a neural network

Fθ:xFθ(x),F_\theta: \mathbf{x} \mapsto F_\theta(\mathbf{x}),

which maps coordinates to a desired quantity (Zhao et al., 25 Aug 2025). In the fluorescence-imaging setting, the network learns a mapping from spatial coordinates to pixel or color values (Zhao et al., 25 Aug 2025).

CellINR uses an MLP with parameters ϱ\varrho and positional encoding to represent the fluorescence volume continuously:

γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,

c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),

where ρ\rho is a 3D coordinate and cc is the predicted intensity or color at that point (Zhao et al., 25 Aug 2025). The positional encoding is used to map 3D coordinates into a high-frequency domain, because raw coordinates are low-frequency inputs and can make the network too smooth (Zhao et al., 25 Aug 2025). The paper states that this multiscale frequency injection enables representation of fine details, edges, and thin structures (Zhao et al., 25 Aug 2025).

A plain INR, however, is described as insufficient for the target task. The paper notes that an unaugmented INR tends to behave like an identity mapping and is not enough to separate clean structure from artifacts (Zhao et al., 25 Aug 2025). CellINR therefore extends the INR backbone with blind convolution and structural amplification. In functional terms, the framework uses the continuity and coordinate-based expressivity of INRs, but supplements them with mechanisms intended to prevent trivial copying and to bias optimization toward biologically meaningful structures (Zhao et al., 25 Aug 2025).

3. Blind convolution and neighborhood-based inference

Blind convolution is introduced to make the model learn from surrounding context while avoiding direct access to the target pixel, in the spirit of blind-spot self-supervision (Zhao et al., 25 Aug 2025). The paper starts from a traditional 3D convolution:

I(x,y,z)=i=hhj=hhk=hhCxi,yj,zkWxi,yj,zk,I_{(x,y,z)} = \sum_{i=-h}^{h} \sum_{j=-h}^{h} \sum_{k=-h}^{h} C_{x-i,y-j,z-k} \cdot W_{x-i,y-j,z-k},

where CC denotes sampled voxel values around the center and WW denotes convolution weights (Zhao et al., 25 Aug 2025). The stated goal is to estimate the center value without feeding the center value itself into the network, thereby preventing trivial copying (Zhao et al., 25 Aug 2025).

To adapt this idea to INR while preserving continuity, CellINR performs coarse sampling in a cube around the target point, predicts volume density with a coarse MLP FΘF_\Theta, and then performs importance sampling to obtain finer samples:

ϱ\varrho0

ϱ\varrho1

ϱ\varrho2

The fine MLP ϱ\varrho3 then predicts color values:

ϱ\varrho4

A separate MLP ϱ\varrho5 generates spatially varying kernel weights that are normalized with Softmax:

ϱ\varrho6

The final blind-convolution output is

ϱ\varrho7

These components together allow the framework to infer the center value from nearby context while maintaining spatial continuity of cellular structures such as membranes and nuclei (Zhao et al., 25 Aug 2025).

In implementation, within a cube of radius 1 around the blind spot, ϱ\varrho8 points are sampled, then another ϱ\varrho9 fine points are added, for a total of γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,0 inputs to the fine MLP and kernel module (Zhao et al., 25 Aug 2025). At inference time, the fine network predicts intensities from sampled center coordinates and the kernel weights are set to 1, allowing output generation at arbitrary resolutions by adjusting the sampling density (Zhao et al., 25 Aug 2025). A plausible implication is that CellINR uses the INR formalism not only for denoising-like restoration but also for continuous resampling.

4. Structural amplification and loss design

The second major component is structural amplification, which is specifically intended to suppress photo-induced artifacts that are described as low-frequency, smooth, and locally uniform (Zhao et al., 25 Aug 2025). The paper contrasts these artifacts with true biological structures, which are said to be concentrated and high-frequency (Zhao et al., 25 Aug 2025). To exploit this distinction, CellINR uses a Hessian-based enhancement step. For a 3D fluorescence image γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,1, the Hessian matrix is

γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,2

After eigenvalue decomposition, the largest-magnitude eigenvalue γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,3 is used to produce an enhanced image:

γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,4

Thresholding via Otsu’s method then yields a binary mask:

γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,5

where γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,6 is the Otsu threshold (Zhao et al., 25 Aug 2025). This mask marks signal-dominant regions and guides optimization toward genuine structural features rather than diffuse artifact regions (Zhao et al., 25 Aug 2025).

Training is self-supervised and case-specific. The first loss term is a clean reconstruction loss over signal regions identified by the binary structure mask:

γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,7

where only signal pixels contribute (Zhao et al., 25 Aug 2025). The second term is a 3D structural consistency loss based on total variation:

γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,8

The final objective is

γ(ρ)=[sin(ρ),cos(ρ),,sin(2ϵ1ρ),cos(2ϵ1ρ)]T,\gamma(\rho)=[\sin(\rho),\cos(\rho),\ldots,\sin(2^{\epsilon-1}\rho),\cos(2^{\epsilon-1}\rho)]^T,9

with c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),0 in experiments (Zhao et al., 25 Aug 2025). The TV term is used to suppress isolated noise and encourage smooth spatial transitions, which the paper identifies as useful for maintaining 3D continuity (Zhao et al., 25 Aug 2025).

5. Optimization protocol, architecture, and data resources

The optimization uses Adam with weight decay c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),1, batch size 4096, up to 500,000 iterations, and a learning rate annealed linearly from c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),2 to c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),3 (Zhao et al., 25 Aug 2025). The MLP architecture matches NeRF’s design, with 8 fully connected layers, 256 channels per layer, and ReLU activations (Zhao et al., 25 Aug 2025). Training one c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),4 volume took about 50,000 iterations and 20 minutes on a single RTX 4090 (Zhao et al., 25 Aug 2025).

A notable contribution is the dataset construction. The paper describes this as the first paired 4D live-cell microscopy dataset for reconstruction evaluation, together with synthetic and unpaired public datasets for broader testing (Zhao et al., 25 Aug 2025). The paired real dataset comes from live C. elegans embryo imaging using a Leica SP5II confocal microscope with a 63×/1.4 NA objective (Zhao et al., 25 Aug 2025). Datasets 1, 2, and 3 are membrane-labeled with mCherry and excited at 561 nm, while dataset 4 is nucleus-labeled with GFP and excited at 488 nm (Zhao et al., 25 Aug 2025). The volumes have c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),5 xy resolution and multiple z planes, later resampled to uniform c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),6 isotropic spacing and saved as 3D NIfTI volumes of size c=Fϱ(γ(ρ)),c=F_\varrho(\gamma(\rho)),7 (Zhao et al., 25 Aug 2025).

The dataset roles are differentiated as follows:

Dataset Role
Dataset 1 Paired low- vs high-exposure real dataset
Dataset 2 Synthetic/noise-augmented paired dataset
Dataset 3 Longer time-resolved 4D series with prominent photo-induced artifacts
Dataset 4 Synthetic/noise-augmented paired dataset

Additional unpaired qualitative datasets include C. elegans, BAPE, zebrafish, and mouse/human embryo data (Zhao et al., 25 Aug 2025). For quantitative evaluation, the reported metrics are PSNR, SSIM, and LPIPS on datasets 1, 2, and 4, with mean and standard deviation over all samples (Zhao et al., 25 Aug 2025).

6. Empirical performance, ablations, and comparative interpretation

The baselines listed in the paper are BM3D, Noise2Void, MM-BSN, and WBNS, together with ablations for baseline INR, w/o blind convolution, w/o structural amplification, and w/o TV loss (Zhao et al., 25 Aug 2025). Quantitatively, CellINR is reported to achieve the highest PSNR and SSIM and the lowest LPIPS across all paired datasets (Zhao et al., 25 Aug 2025). The paper further notes roughly a 30% improvement in mean values over mainstream methods on dataset 1, and about 10% improvement over WBNS (Zhao et al., 25 Aug 2025).

WBNS is described as often the strongest competitor, but the paper argues that it can remove background artifacts at the cost of breaking structural continuity because wavelet decomposition can introduce serrated or discontinuous edges (Zhao et al., 25 Aug 2025). By contrast, CellINR is reported to better preserve continuity while eliminating pseudo-signals (Zhao et al., 25 Aug 2025). Qualitative evidence is described in terms of cleaner membranes and nuclei, smoother intensity profiles along selected line traces, and fewer jagged or blurred structures than competing methods (Zhao et al., 25 Aug 2025).

The ablation results are presented as evidence that each design choice is functionally necessary. Baseline INR alone performs poorly and behaves nearly like an identity map (Zhao et al., 25 Aug 2025). Removing blind convolution hurts continuity and anti-aliasing (Zhao et al., 25 Aug 2025). Removing structural amplification weakens artifact suppression, especially for low-frequency background pseudo-signals (Zhao et al., 25 Aug 2025). Removing TV loss reduces suppression of high-frequency speckles and isolated noise (Zhao et al., 25 Aug 2025). Taken together, these observations support the paper’s claim that signal–artifact decoupling depends on combining spatial continuity, local neighborhood context, and frequency-aware coordinate encoding rather than relying on any one mechanism in isolation (Zhao et al., 25 Aug 2025).

7. Scope, applications, and limitations

The main reported advantages of CellINR are that it is self-supervised, does not require pixel-aligned clean targets, explicitly models 3D continuity, leverages neighborhood context through blind convolution, and uses structural amplification to emphasize true biological regions (Zhao et al., 25 Aug 2025). It also supports arbitrary-resolution reconstruction through coordinate sampling, which is described as useful in microscopy where continuous spatial detail matters (Zhao et al., 25 Aug 2025).

The paper suggests downstream value for 3D segmentation and morphological analysis during embryogenesis, stating that cleaner reconstructions can reduce misidentification and over-segmentation (Zhao et al., 25 Aug 2025). More broadly, the potential applications explicitly mentioned are long-term live-cell imaging, artifact suppression in embryogenesis studies, quantitative morphology analysis, cell segmentation, and biological imaging workflows in which preserving continuous structure is more important than merely smoothing noise (Zhao et al., 25 Aug 2025).

The limitations are also explicit. The authors note that CellINR can misclassify regions when artifacts and true signals are ambiguous, so it is best suited to datasets where artifacts are clearly distinguishable from biological structures (Zhao et al., 25 Aug 2025). They also state that for multi-channel composite images, processing without separate single-channel data may mix fluorescence signals and degrade reconstruction quality (Zhao et al., 25 Aug 2025). Because the method is case-specific optimization, it may be slower than feed-forward models and may require per-volume training (Zhao et al., 25 Aug 2025).

Within the broader methodological landscape, CellINR can be understood as a reconstruction framework that reframes artifact removal in 4D fluorescence microscopy as continuous implicit modeling rather than as ordinary denoising (Zhao et al., 25 Aug 2025). This suggests a shift in emphasis: from voxelwise filtering toward coordinate-based estimation constrained by local context and structural priors.

Definition Search Book Streamline Icon: https://streamlinehq.com
References (1)

Topic to Video (Beta)

No one has generated a video about this topic yet.

Whiteboard

No one has generated a whiteboard explanation for this topic yet.

Follow Topic

Get notified by email when new papers are published related to CellINR Framework.