Low-frequency (alpha-band) activity shapes fine-scale information routing in early visual cortex — alpha oscillations in V1 carry spatially specific figure-ground information and modulate inter-areal V1-V4 coupling during visual processing, supporting the hypothesis that alpha-band synchrony implements hierarchical feedback gating.
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill low-frequency-alpha-visual-cortex-routing --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Low Frequency Alpha Visual Cortex Routing?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-low-frequency-alpha-visual-cortex-routing)More formats (shields.io, HTML) on the badges page.
---
name: low-frequency-alpha-visual-cortex-routing
version: 1.0.0
description: Low-frequency (alpha-band) activity shapes fine-scale information routing in early visual cortex — alpha oscillations in V1 carry spatially specific figure-ground information and modulate inter-areal V1-V4 coupling during visual processing, supporting the hypothesis that alpha-band synchrony implements hierarchical feedback gating.
triggers:
- alpha oscillations visual cortex routing
- low frequency visual cortex information routing
- alpha band figure ground segregation
- V1 V4 alpha coupling
- nested oscillatory visual processing
- visual cortex feedback alpha
- hierarchical oscillatory gating
- alpha band inter-areal communication
- cortical excitability modulation alpha
- visual processing alpha synchrony
authors:
- Shelepenkov, D.
- Acacia, G.
- Bonnefond, M.
source: "biorxiv:10.64898/2026.05.25.727722"
published: "2026-05-25"
---
# Low-Frequency Alpha Activity Shapes Visual Cortex Information Routing
## Overview
This work demonstrates that **alpha-band (~8-12 Hz) oscillations in V1 encode spatially-specific visual information** and dynamically gate inter-areal communication between V1 and V4 during active visual processing. Using reanalysis of macaque LFP/MUA recordings during figure-ground segregation, the study establishes alpha as a **routing mechanism** rather than merely reflecting idle cortical inhibition.
## Core Findings
### Alpha Carries Spatial Visual Information
- **Alpha activity in V1** (not just gamma) encodes:
- **Figure position**: spatial location of foreground object
- **Stimulus orientation**: fine-grained feature information
- This information is present **transiently post-stimulus**, coinciding with the emergence of figure-ground modulation
- Same window coincides with dominant **V4→V1 feedback** flow
### Alpha Modulates Local Spiking
- During the transient post-stimulus window:
- **V1 spiking (MUA) depends on alpha amplitude** — higher alpha = modulated local excitability
- Alpha phase shapes the timing of local population firing
- This contradicts the simple "alpha = inhibition" view
### Alpha Gates Inter-Areal V1-V4 Communication
- **V1-V4 inter-areal coupling depends on**:
1. **Alpha amplitude** in V1
2. **Instantaneous V1-V4 phase difference** (phase-dependent communication)
- Low-frequency synchronization implements effective communication between cortical populations
## Experimental Design
```
Setup:
- Macaque monkeys (N=2) performing figure-ground segregation
- Simultaneous LFP + multi-unit activity (MUA) recordings from V1 and V4
- Figure present (foreground) vs. Background conditions
Analysis pipeline:
1. LFP time-frequency decomposition (Morlet wavelets, 1-100 Hz)
2. Information content analysis:
- Decode figure position from alpha LFP (linear classifier)
- Test across spatial locations within recording array
3. Phase-amplitude coupling (PAC):
- Cross-frequency coupling between alpha phase and gamma amplitude
4. Phase-based communication analysis:
- Compute V1-V4 phase coherence as function of V1 alpha amplitude
- Compute effective coupling vs. V1-V4 instantaneous phase difference
5. Timing: split into early (50-200ms) vs. late (>200ms) post-stimulus
```
## Implementation
```python
import numpy as np
from scipy import signal
from sklearn.linear_model import LogisticRegression
def compute_alpha_information_routing(lfp_v1, lfp_v4, mua_v1,
figure_labels, fs=1000):
"""
Analyze alpha-band routing of visual information.
Parameters:
lfp_v1: (n_trials, n_channels, n_time) V1 LFP
lfp_v4: (n_trials, n_channels, n_time) V4 LFP
mua_v1: (n_trials, n_channels, n_time) V1 spiking
figure_labels: (n_trials,) figure position labels
fs: sampling frequency
"""
# 1. Extract alpha band
alpha_low, alpha_high = 8, 12
b, a = signal.butter(4, [alpha_low, alpha_high], btype='bandpass', fs=fs)
alpha_v1 = signal.filtfilt(b, a, lfp_v1, axis=-1)
alpha_v4 = signal.filtfilt(b, a, lfp_v4, axis=-1)
# 2. Alpha amplitude and phase
analytic_v1 = signal.hilbert(alpha_v1, axis=-1)
alpha_amp_v1 = np.abs(analytic_v1)
alpha_phase_v1 = np.angle(analytic_v1)
analytic_v4 = signal.hilbert(alpha_v4, axis=-1)
alpha_phase_v4 = np.angle(analytic_v4)
# 3. Decode figure position from alpha amplitude
# Average alpha amplitude per trial, channel
alpha_features = alpha_amp_v1.mean(axis=-1) # (trials, channels)
clf = LogisticRegression(max_iter=1000)
# cross-validate
from sklearn.model_selection import cross_val_score
scores = cross_val_score(clf, alpha_features, figure_labels, cv=5)
print(f"Alpha decoding accuracy: {scores.mean():.3f} ± {scores.std():.3f}")
# 4. Phase-dependent inter-areal coupling
# Compute instantaneous phase difference
phase_diff = alpha_phase_v1 - alpha_phase_v4 # (trials, ch_v1, ch_v4, time)
# Sort by alpha amplitude and measure MUA correlation with coupling
high_alpha_trials = alpha_amp_v1.mean(axis=(-1,-2)) > np.median(
alpha_amp_v1.mean(axis=(-1,-2)))
coupling_high_alpha = np.abs(np.exp(1j * phase_diff[high_alpha_trials])).mean()
coupling_low_alpha = np.abs(np.exp(1j * phase_diff[~high_alpha_trials])).mean()
print(f"High alpha coupling: {coupling_high_alpha:.3f}")
print(f"Low alpha coupling: {coupling_low_alpha:.3f}")
return {
'decoding_scores': scores,
'coupling_high_alpha': coupling_high_alpha,
'coupling_low_alpha': coupling_low_alpha
}
```
## Theoretical Implications
### Alpha as Routing Not Inhibition
| Traditional View | This Work |
|-----------------|-----------|
| Alpha = cortical idle/inhibition | Alpha = active routing mechanism |
| Alpha inversely related to processing | Alpha carries task-relevant information |
| Alpha suppresses gamma locally | Alpha modulates gamma through phase-amplitude coupling |
| Alpha = uniform inhibition | Alpha has fine spatial specificity |
### Communication Through Coherence (CTC) Extension
The findings extend the Communication Through Coherence (CTC) framework:
1. **Classic CTC**: Gamma-band synchrony mediates feedforward communication
2. **This work**: Alpha-band synchrony mediates **feedback** communication
3. Combined: Nested gamma/alpha implement **bidirectional routing** in visual hierarchy
### Nested Hierarchy of Oscillations
```
V4 → V1 feedback flow (dominant in post-stimulus window):
- Carried by alpha-band synchronization
- Alpha phase gates local V1 spiking
- Alpha amplitude encodes spatial position and orientation
V1 → V4 feedforward (classical pathway):
- Gamma-band synchronization
- Driven by local V1 population activity
```
## Applications
| Research Area | Application |
|---------------|------------|
| Visual prosthetics | Use alpha timing to drive feedback stimulation |
| Attention models | Alpha routing explains spatial attention filtering |
| Figure-ground models | Alpha-band feedback needed for perceptual grouping |
| Consciousness research | Alpha as substrate for recurrent processing |
| Brain-computer interfaces | Decode figure position from alpha in real-time |
## Pitfalls
- **Reanalysis study**: original recording parameters constrain analysis; could not directly test new manipulations
- **Only 2 macaques**: individual variability unknown
- **Spatial specificity may be limited by electrode density** — results most compelling for coarse spatial bins
- Alpha in V1 may reflect feedback from other areas beyond V4 (e.g., pulvinar)
- The post-stimulus transient window needs careful definition to avoid contamination
## Related Skills
- `feedforward-dynamics-stimulus-encoding` — feedforward dynamics in sensory cortex
- `cortical-microcircuit-information-flux` — local circuit information routing
- `flexible-phase-locking-cortical-theta` — theta-band phase locking mechanisms
- `eeg-visual-attention-decoding` — alpha-based visual attention decoding
- `sae-brain-llm-topography` — cortical topographic organization
Is this your skill, or is something wrong with this listing? Request removal or report an issue. Author removals are honored within 72 hours.
No comments yet. Be the first to comment!