Skip to main content

mne_make_uniform_stc

Overview

mne_make_uniform_stc creates a uniform STC source estimate where every vertex has the same value. This is useful for testing visualization pipelines, verifying source space coverage, or creating baseline reference files.

Usage

mne_make_uniform_stc [options]

Options

OptionDescription
--src <file>Source space FIFF file
--val <value>Uniform value for all vertices (default: 1.0)
--out <file>Output STC file path
--helpPrint help
--versionPrint version

Example

# Create uniform STC with all vertices set to 1.0
mne_make_uniform_stc --src sam-oct-6-src.fif --out uniform-lh.stc

# Create uniform STC with custom value
mne_make_uniform_stc --src sam-oct-6-src.fif --val 0.5 --out half-lh.stc

See Also