---
title: 'FMOX: Dual Roles in Vision and Excitonics'
url: https://www.emergentmind.com/topics/fmox
type: topic
---

# FMOX: Dual Roles in Vision and Excitonics

FMOX is a context-dependent technical designation that appears in two unrelated research literatures. In computer vision, it denotes a unified JSON-based benchmark format and dataset aggregation for evaluating single-object tracking and segmentation pipelines on fast moving objects, with an emphasis on small, blurred, fast-displacing targets that are underrepresented in mainstream VOT and VOS benchmarks [2512.09633]. In photosynthetic excitonics, the same label is used in synthesized notes for the Fenna–Matthews–Olson complex and adjacent themes, including excitation energy transfer, correlated protein motion, explicit exciton–vibrational dynamics, oxidized FMO, and, in one interpretation, the extended or holo 8-site complex [1407.2181][2412.14883][1408.3556]. The term is therefore not semantically stable across domains, and its meaning is fixed by disciplinary context.

## 1. Nomenclature and domain specificity

Across the supplied literature, “FMOX” has no single canonical definition. In the fast-moving-object literature it is explicitly defined as “FMO eXtended,” a metadata layer that harmonizes heterogeneous FMO datasets into a common schema and augments them with bounding boxes and object-size labels [2509.06536]. In the Fenna–Matthews–Olson literature, the label is used more loosely: one synthesis contrasts the oxidized complex with the reduced complex under the heading “FMOX” [2412.14883]; another states that “FMOX” is plausibly interpreted as the holo-FMO variant with an extra pigment, i.e. the 8-site form [1408.3556]; another uses it as a shorthand for explicit correlated exciton–vibrational dynamics in FMO [1503.07059].

| Usage of “FMOX” | Domain | Meaning in the supplied literature |
|---|---|---|
| FMOX | Computer vision | Unified JSON benchmark and dataset aggregation for fast moving objects |
| FMOX | Photosynthetic excitonics | Shorthand for FMO-related excitation-energy-transfer studies |
| FMOX | Redox-dependent FMO studies | Oxidized FMO contrasted with the reduced complex |
| FMOX | 8-site FMO interpretation | Extended or holo FMO with an extra pigment |

This divergence suggests that “FMOX” functions as a local shorthand rather than a field-wide standard. In encyclopedia usage, disambiguation is therefore essential before any technical discussion.

## 2. FMOX as a benchmark for fast moving object tracking

In computer vision, FMOX is a unified JSON-based benchmark format and dataset aggregation for evaluating single-object tracking and segmentation pipelines on fast moving objects. It consolidates Falling Object, TbD, TbD-3D, and FMOv2, excludes the multi-object “more_balls” sequence because unique IDs are missing, and yields 46 single-object sequences in total [2512.09633]. The benchmark does not introduce new raw videos; instead, it harmonizes established FMO datasets under a single schema, adds object-size categorization, and defines an evaluation protocol, metrics, and split [2512.09633].

The benchmark is explicitly designed to stress-test trackers under high-speed motion and motion blur. FMOv2 and TbD are identified as particularly challenging because objects are small and the overlap between consecutive bounding boxes is often near zero, which reflects large displacements and motion blur [2512.09633]. Ground truth is standardized as per-frame bounding boxes; frames in which the object is absent have no ground-truth box, and FMOX ground truth does not provide masks or points, even though trackers may internally predict masks [2512.09633].

A second description of FMOX specifies the JSON schema in detail. Top-level entries are `databases`, each dataset has `dataset_name`, `version`, `description`, and `sub_datasets`, and each frame entry includes `img_index`, `image_file_name`, and `annotations` with `bbox_xyxy`, `object_wh`, and `size_category` [2509.06536]. Size is represented in five bins. One paper expresses these as integer classes from `0=extremely tiny` to `4=large` [2512.09633], while another gives explicit labels and side-length thresholds for a square bounding box: extremely tiny \([1\times1,8\times8)\), tiny \([8\times8,16\times16)\), small \([16\times16,32\times32)\), medium \([32\times32,96\times96)\), and large \([96\times96,\infty)\) [2509.06536].

FMOX was created because the source datasets use diverse annotation formats, including text trajectories, MATLAB files, PNG masks, and run-length encodings, which complicate reproduction and benchmarking [2509.06536]. The harmonized representation is therefore intended to make loaders, evaluation, and cross-dataset comparison more consistent. A direct implication is that FMOX is primarily an interoperability and benchmarking layer, not a new video corpus.

## 3. Evaluation protocol, trackers, and benchmark results on FMOX

The benchmarked task is single-object segmentation and tracking from a single user-provided exemplar on an initialization frame, operationalized here as the first frame in which the object appears and instantiated with the ground-truth bounding box [2512.09633]. Boxes were chosen over points or masks because recent works show better robustness with box templates for SAM2-family trackers [2512.09633]. Evaluation is frame-by-frame across the full sequence. No resets or restarts are performed, the initialization frame is omitted from scoring, frames without ground truth are excluded, and if a tracker fails to output a box on a ground-truth frame then IoU and Dice for that frame are set to zero and included in the sequence-level mean [2512.09633].

The benchmark reports mean IoU and mean Dice. With prediction \(M\) and ground truth \(G\),
\[
J = \frac{|M \cap G|}{|M \cup G|}
\]
and
\[
\mathrm{Dice} = \frac{2|M \cap G|}{|M| + |G|}.
\]
Sequence-level scores are the means over valid frames, and the paper aggregates these across sequences using mean, median, minimum, and maximum [2512.09633]. Success-rate, AUC, precision, recall, and DAVIS-style boundary \(F\) are defined for completeness in the paper but are not used in the benchmark [2512.09633].

Four SAM2-based pipelines are benchmarked. SAM2 uses an image encoder and a 7-slot FIFO memory with the first slot fixed, outputs three mask candidates, and selects the one with highest predicted IoU; the paper identifies vulnerability to distractors and misleading stored features during occlusions [2512.09633]. EfficientTAM replaces the heavy SAM2 encoder with a lightweight ViT and consolidates similar memory tokens into representative tokens to reduce compute and memory [2512.09633]. DAM4SAM introduces a Distractor-Aware Memory split into Recent Appearance Memory and Distractor Resolving Memory, with custom update rules that avoid distractor-infected frames [2512.09633]. SAMURAI adds Kalman-filter motion modeling and motion-aware instance-level memory, selecting high-confidence frames using affinity and motion scores rather than a fixed window [2512.09633].

The reported model settings were SAM2.1 Hiera-L for SAM2 and DAM4SAM, SAM2.1 Hiera-B+ for SAMURAI, and `efficienttam_s` for EfficientTAM, on an NVIDIA RTX 4090, 13th Gen Intel Core i9, 64 GB RAM, CUDA 12.4.1, Ubuntu 20.04.6 under WSL [2512.09633].

| Tracker | Mean mIoU | Mean mDice |
|---|---:|---:|
| SAM2 | 0.461 | 0.545 |
| EfficientTAM | 0.438 | 0.520 |
| DAM4SAM | 0.505 | 0.600 |
| SAMURAI | 0.488 | 0.579 |

DAM4SAM has the best mean and median mIoU and mDice across all 46 sequences, with median mIoU \(0.605\) and median mDice \(0.744\) [2512.09633]. SAMURAI is second overall and wins on FMOv2, the subset described as especially motion-challenging [2512.09633]. SAM2 is strongest on TbD-3D, while EfficientTAM is consistently the fastest in wall-clock time on Falling Object, FMOv2, TbD, and TbD-3D, but trails in accuracy on the hardest motion-blurred sequences [2512.09633].

The per-dataset ranking is: Falling Object, DAM4SAM \(>\) SAM2 \(>\) SAMURAI \(>\) EfficientTAM; TbD-3D, SAM2 \(>\) DAM4SAM \(>\) SAMURAI \(>\) EfficientTAM; FMOv2, SAMURAI \(>\) DAM4SAM \(>\) SAM2 \(>\) EfficientTAM; and TbD, DAM4SAM \(>\) SAMURAI \(>\) EfficientTAM \(>\) SAM2 [2512.09633]. Typical failure modes are motion blur, temporary invisibility, tiny targets, non-overlapping consecutive boxes, distractors, and poor initialization on a highly blurred first frame [2512.09633]. The paper does not assess statistical significance [2512.09633].

A related EfficientTAM-only study evaluates FMOX with Trajectory IoU rather than mIoU and mDice. It reports dataset-level TIoU values of \(0.7093\) on Falling Objects, \(0.4546\) on TbD, and \(0.8604\) on TbD-3D, and emphasizes that box initialization is much more reliable than point initialization in the presence of blur [2509.06536]. Taken together, these studies suggest that FMOX is now used both as a general-purpose standardized benchmark and as a stress test for memory design, motion modeling, and initialization policy in SAM2-derived trackers.

## 4. FMOX in the Fenna–Matthews–Olson literature: structure, states, and functional setting

In the photosynthetic literature, FMO denotes the Fenna–Matthews–Olson complex, a trimeric pigment–protein complex from green sulfur bacteria that bridges energy flow between antenna systems and the reaction center [1407.2181]. Each monomer has a clam-shell architecture that sequesters seven bacteriochlorophyll \(a\) pigments internally and hosts an eighth near the outside or baseplate interface [1407.2181]. The complex accepts excitations primarily at pigments 1, 6, and possibly 8, and delivers them toward a low-energy sink near pigment 3 adjacent to the reaction center [1407.2181].

The standard single-exciton Hamiltonian in site basis is
\[
H = \sum_n \varepsilon_n |n\rangle\langle n| + \sum_{n\neq m} J_{nm}|n\rangle\langle m|,
\]
or, in another formulation,
\[
H = \sum_i \epsilon_i |i\rangle\langle i| + \sum_{i\neq j} J_{ij} \left(|i\rangle\langle j| + |j\rangle\langle i|\right),
\]
with \(\varepsilon_n\) or \(\epsilon_i\) the site energies and \(J_{ij}\) the couplings [2412.14883][1408.3556]. A closely related excitonic Hamiltonian used for structural ensemble analysis is
\[
H = \sum_i \epsilon_i |i\rangle\langle i| + \sum_{i\neq j} J_{ij} (|i\rangle\langle j| + |j\rangle\langle i|),
\]
where \(|i\rangle\) is the local \(Q_y\) excitation on pigment \(i\) [1407.2181].

One line of work interprets FMOX as the 8-site, holo-FMO form. In that usage, the extra bacteriochlorophyll 8 has the highest site energy and lies near the protein surface close to the baseplate [1408.3556]. Simulated two-dimensional electronic spectroscopy identifies two dominant downhill pathways. In the first, the apo 7-site route \(6 \rightarrow 3 \rightarrow 1\) is modified into \(8 \rightarrow 6 \rightarrow 3 \rightarrow 1\) because pigment 8 injects energy into exciton 6 [1408.3556]. In the second, the route \(7 \rightarrow 4,5 \rightarrow 2 \rightarrow 1\) is strengthened because BChl 8 increases the wavefunction overlap between excitons 4 and 5; using the overlap metric
\[
S_{\alpha\beta} = \sum_n |c_n^{(\alpha)} c_n^{(\beta)}|,
\]
the paper reports \(S_{45}\approx 0.56\) in apo-FMO and \(S_{45}\approx 0.77\) in holo-FMO [1408.3556].

A separate transport-optimization study also treats the 8-site complex, takes BChl 8 as the physiologically relevant initial excitation site, and analyzes transfer to both BChl 3 and BChl 4 as alternative target sites in the reaction-center interface region [1807.03459]. This study identifies two transport pathways: a predominantly dissipative route to BChl 3 and a partially coherent route to BChl 4, with strong coherence–efficiency correlation for the latter [1807.03459]. These results suggest that the 8-site interpretation of FMOX is not merely structural; it changes pathway topology, coupling geometry, and the inferred role of the reaction-center interface.

## 5. Dynamical frameworks and mechanistic interpretations in FMO excitation-transfer studies

One important structural-dynamical account uses rigidity analysis with FIRST and constrained geometric sampling with FRODA to generate an athermal conformational ensemble from the \(1.3\ \text{\AA}\) X-ray structure of *Prosthecochloris aestuarii* (PDB 3EOJ) [1407.2181]. With hydrogen-bond cutoff \(E_{\text{cut}}=-4.6\ \mathrm{kcal/mol}\), 713 hydrogen-bond constraints, and 236 hydrophobic constraints, the analysis finds an unusually large rigid clam-shell cluster, generally low residue RMSF, and strong spatial correlations between excitonically coupled pigments and helices that tune site energies [1407.2181]. The standard rigidity metric \(f_5\) is \(0.56\) at \(H_{\text{cut}}=-3.0\ \mathrm{kcal/mol}\), which the paper uses to support the description of FMO as “exceptionally high” in rigidity [1407.2181]. The central implication is that correlated inhomogeneous disorder narrows effective uncertainty in energy gaps and couplings:
\[
\mathrm{Var}\!\left(\sum_k a_k X_k\right) = \sum_k a_k^2 \mathrm{Var}(X_k) + 2\sum_{i<j} a_i a_j \mathrm{Cov}(X_i,X_j),
\]
so positive covariance among structurally linked degrees of freedom reduces the effective spread relative to independent disorder [1407.2181].

Several open-system approaches then model how vibrational environments shape transport. A non-Markovian quantum state diffusion treatment yields the convolutionless ZOFE master equation
\[
\partial_t \rho(t) = -i[H_{\rm sys},\rho(t)] - \sum_n [L_n,\rho(t)\bar O_0^{(n)\dagger}(t)] - \sum_n [\bar O_0^{(n)}(t)\rho(t),L_n],
\]
and, for the FMO monomer, reproduces hierarchical equations of motion results at \(77\ \mathrm{K}\) and \(300\ \mathrm{K}\) while allowing calculations “within about one minute on a standard PC” [1106.5259]. This study also shows that adding a large spectral-density peak near \(1600\ \mathrm{cm}^{-1}\) does not change transfer dynamics because relevant electronic transition energies lie below about \(500\ \mathrm{cm}^{-1}\), whereas redistributing coupling among structured peaks below \(550\ \mathrm{cm}^{-1}\) can change the BChl 3 population after \(1\ \mathrm{ps}\) by up to about \(50\%\) at \(77\ \mathrm{K}\) [1106.5259].

Explicit correlated exciton–vibrational dynamics has been studied with ML-MCTDH in both reduced and full-network models. A 3-site model with 450 vibrational degrees of freedom identifies the \(160\)–\(300\ \mathrm{cm}^{-1}\) band as responsible for sub-picosecond population relaxation and coherence dephasing, and finds that a time-dependent Hartree mean-field treatment is not applicable [1503.07059]. A subsequent 7-site and 8-site treatment with 518 and 592 modes shows coherent \(1 \leftrightarrow 2\) exchange with about \(150\ \mathrm{fs}\) period in the 7-site model, a dominant downhill route \(8 \rightarrow 1 \rightarrow 2 \rightarrow 3\) in the 8-site model, and vibronic excitation around \(180\)–\(200\ \mathrm{cm}^{-1}\) associated with transfer into site 3 [1602.03973]. These studies jointly indicate that structured low-frequency vibrational couplings are not a perturbative correction but a mode-selective component of the transport mechanism.

Room-temperature HEOM calculations on an 8-site monomer further predict that coherence and semi-local entanglement initially concentrate among sites \((1,2,8)\), decay before about \(0.5\ \mathrm{ps}\), exhibit a pronounced drop in total coherence near \(0.25\ \mathrm{ps}\), and then persist mainly among pairs closer to the reaction-center pathway, notably \((3,4)\), with additional contributions from \((4,7)\), \((2,6)\), and \((5,6)\) [2008.07580]. Another study on site-varying pigment–protein interactions shows that realistic, site-dependent reorganization energies are highly optimized: the native configuration lies in the 85th percentile for transport to BChl 3 and the 78th percentile for transport to BChl 4 under permutation tests, while the coherence–efficiency correlation for the BChl 4 route is \(r\approx 0.90\) and remains \(r\approx 0.76\) even when \(J_{34}=0\) [1807.03459]. This supports a picture with a predominantly dissipative pathway to BChl 3 and a partially coherent pathway to BChl 4.

A different proposal identifies a new transport channel, denoted FMO8 in that work, formed by the seven intramonomeric pigments and their second-nearest intermonomeric counterpart 8 [2112.10667]. Its efficiency, measured as time-averaged population at pigment 3 over short times, is about five times higher than the standard alternative at \(60\ \mathrm{fs}\), and the mechanism is attributed to an interplay between incoherent FRET from pigment 8 and coherent formation of an optimal acceptor exciton within pigments 1–7 [2112.10667]. In a separate nonequilibrium Green’s-function formulation, exciton flow in FMO is described as population-driven rather than energy-funnel-driven:
\[
J_c = \alpha_{cc} n_c - \alpha_{cr} n_r,\qquad
J_r = \alpha_{rc} n_c - \alpha_{rr} n_r,
\]
with reservoir populations \(n_c\) and \(n_r\) the only driving force behind transfer in that model [2410.16772]. The same paper proposes a reaction-center protection mechanism based on output-current reversal once \(n_r > (\alpha_{rc}/\alpha_{rr}) n_c\) [2410.16772].

## 6. Oxidized FMO, redox dependence, and unresolved interpretation

In one redox-dependent usage, FMOX denotes the oxidized Fenna–Matthews–Olson complex [2412.14883]. Two-dimensional electronic spectroscopy under controlled redox conditions shows that, in the reduced complex, the direct \(4 \rightarrow 1\) and indirect \(4 \rightarrow 2\) pathways are comparable, whereas oxidation suppresses \(4 \rightarrow 1\) and enhances \(4 \rightarrow 2\) [2412.14883]. The experimentally inferred effective rates are, in \(\mathrm{ps}^{-1}\), reduced: \(k_{4\rightarrow1}\approx 1.98\), \(k_{4\rightarrow2}\approx 2.45\), \(k_{2\rightarrow1}\approx 2.20\); oxidized: \(k_{4\rightarrow1}\approx 0.67\), \(k_{4\rightarrow2}\approx 4.41\), \(k_{2\rightarrow1}\approx 2.27\) [2412.14883]. This redirects population flow from the direct \(4 \rightarrow 1\) route toward the indirect \(4 \rightarrow 2 \rightarrow 1\) pathway and coincides with disappearance of long-lived quantum beats under oxidation [2412.14883].

Theoretical interpretation is contested. Higgins et al. had linked the observations to oxidative onsite-energy shifts detuning an excitonic gap from an underdamped bacteriochlorophyll vibrational mode near \(260\ \mathrm{cm}^{-1}\), but a non-perturbative HEOM memory-kernel study concludes that onsite energy shifts alone cannot reproduce the observed oxidative changes while also preserving absorption spectra [2412.14883]. In the paper’s “PNAS model,” converged HEOM even predicts the wrong qualitative trend for \(k_{4\rightarrow1}\), increasing rather than decreasing upon oxidation [2412.14883]. An “altered environment” model with small negative shifts \(\Delta\epsilon_2=-10\ \mathrm{cm}^{-1}\), \(\Delta\epsilon_3=-25\ \mathrm{cm}^{-1}\), \(\Delta\epsilon_4=-25\ \mathrm{cm}^{-1}\), together with changing the underdamped mode frequency from \(260\) to \(150\ \mathrm{cm}^{-1}\), restores the qualitative redirection but still fails quantitatively [2412.14883].

This leads to a broader methodological conclusion. Within non-perturbative treatments, oxidation appears to require combined changes in electronic parameters and local environment rather than a purely electronic detuning picture [2412.14883]. The paper explicitly argues that commonly used FMO electronic Hamiltonians, originally fitted with second-order cumulant and Redfield theories, may need reassessment with non-perturbative schemes or first-principles methods [2412.14883]. That conclusion also helps explain why “FMOX” remains unstable as a label in the excitonics literature: the oxidized complex, the holo 8-site complex, and the broader FMO excitation-transfer problem overlap conceptually but are not interchangeable objects.

In summary, FMOX names either a fast-moving-object benchmark in computer vision or a family of shorthand usages centered on the Fenna–Matthews–Olson complex in excitonics. In the first domain, it is a harmonized JSON benchmark that has become a stringent test bed for SAM2-based trackers, with DAM4SAM giving the best overall accuracy and EfficientTAM the best speed on the reported studies [2512.09633][2509.06536]. In the second, it indexes a technically diverse body of work on FMO structure, vibronic dynamics, coherence, transport optimization, and redox-dependent pathway changes, with no single standardized biochemical referent [1407.2181][1106.5259][2412.14883]. The shared abbreviation therefore masks two entirely different research objects: one a machine-vision benchmark for blurred, fast, tiny targets, the other a set of theoretical and spectroscopic problems concerning excitation transport in a photosynthetic pigment–protein complex.

Source: https://www.emergentmind.com/topics/fmox