从神经脉冲重建视觉场景的深度学习框架(SID)。端到端解码器, 从视网膜神经节细胞脉冲重建静态图像和动态视频。 触发词:神经解码、视觉重建、脉冲解码、脑机接口、神经假体、 neural decoding, visual reconstruction, spike decoding, brain-machine interface。
Scanned 9/11/2026
Install to Claude Code
npx -y skills add hiyenwong/ai_collection --skill spike-image-decoder --agent claude-codeInstalls into .claude/skills of the current project.
Are you the author of Spike Image Decoder?
Add the live security badge to your README — it updates automatically with every re-scan.
[](https://www.skillsdirectory.com/skills/hiyenwong-spike-image-decoder-b9ce6cbd)More formats (shields.io, HTML) on the badges page.
---
name: spike-image-decoder
version: 1.0.0
description: |
从神经脉冲重建视觉场景的深度学习框架(SID)。端到端解码器,
从视网膜神经节细胞脉冲重建静态图像和动态视频。
触发词:神经解码、视觉重建、脉冲解码、脑机接口、神经假体、
neural decoding, visual reconstruction, spike decoding, brain-machine interface。
---
# Spike-Image Decoder (SID)
## 核心方法论
### 问题定义
**挑战:** 传统视觉解码主要使用 fMRI 数据,但视觉感知在毫秒级时间尺度运作(神经脉冲)。
**解决方案:** SID - 基于深度神经网络的脉冲-图像解码框架
---
## 关键概念
### 1. 神经编码与解码
| 方向 | 说明 |
|------|------|
| **编码** | 刺激 → 神经活动 |
| **解码** | 神经活动 → 刺激重建 |
### 2. 端到端解码器
```
┌─────────────────────────────────────────────────────┐
│ SID 架构 │
├─────────────────────────────────────────────────────┤
│ │
│ 输入:神经脉冲序列 │
│ (视网膜神经节细胞群体) │
│ │ │
│ ▼ │
│ ┌─────────────────────┐ │
│ │ 脉冲编码器 │ │
│ │ (Spike Encoder) │ │
│ └──────────┬──────────┘ │
│ │ │
│ ▼ │
│ ┌─────────────────────┐ │
│ │ 深度神经网络 │ │
│ │ (Decoder Network) │ │
│ └──────────┬──────────┘ │
│ │ │
│ ▼ │
│ 输出:视觉场景重建 │
│ (静态图像/动态视频) │
│ │
└─────────────────────────────────────────────────────┘
```
### 3. 优势特点
| 特点 | 说明 |
|------|------|
| **高精度** | 重建质量优于现有 fMRI 解码模型 |
| **实时性** | 支持动态视频的实时编解码 |
| **泛化性** | 可推广到任意视觉场景 |
| **端到端** | 直接从脉冲到图像,无需手工特征 |
---
## 技术要点
### 支持的视觉场景
| 类型 | 说明 |
|------|------|
| **静态图像** | 自然图像重建 |
| **动态视频** | 实时视频解码 |
| **标准数据集** | MNIST, CIFAR10, CIFAR100 |
### 两阶段训练
1. **脉冲编码器**:将脉冲序列编码为特征表示
2. **图像解码器**:从特征重建视觉场景
### 泛化机制
```python
# 训练阶段:在自然场景上训练 SID
sid.train(natural_scenes, retinal_spikes)
# 泛化阶段:使用脉冲编码器处理新场景
encoder = SpikeEncoder()
spike_repr = encoder.encode(new_image)
# 解码
reconstructed = sid.decode(spike_repr)
```
---
## 应用场景
| 场景 | 说明 |
|------|------|
| **神经假体** | 视觉神经假体设计 |
| **事件相机** | 神经形态视觉系统 |
| **脑机接口** | 视觉解码接口 |
| **基础研究** | 神经编码机制研究 |
---
## 性能优势
| 指标 | SID vs fMRI 解码 |
|------|-------------------|
| 时间分辨率 | 毫秒级 vs 秒级 |
| 重建精度 | 更高 |
| 实时性 | 支持 vs 不支持 |
---
## 技术实现
### PyTorch 示例
```python
import torch
import torch.nn as nn
class SpikeImageDecoder(nn.Module):
def __init__(self, num_neurons, image_channels=3, image_size=64):
super().__init__()
# 脉冲编码器
self.spike_encoder = nn.Sequential(
nn.Linear(num_neurons, 1024),
nn.ReLU(),
nn.Linear(1024, 2048),
nn.ReLU()
)
# 图像解码器
self.image_decoder = nn.Sequential(
nn.ConvTranspose2d(2048, 512, 4, 1, 0),
nn.ReLU(),
nn.ConvTranspose2d(512, 256, 4, 2, 1),
nn.ReLU(),
nn.ConvTranspose2d(256, 128, 4, 2, 1),
nn.ReLU(),
nn.ConvTranspose2d(128, image_channels, 4, 2, 1),
nn.Sigmoid()
)
def forward(self, spike_train):
"""
spike_train: (batch, time, num_neurons)
"""
# 时间池化
spike_features = spike_train.mean(dim=1)
# 编码
encoded = self.spike_encoder(spike_features)
# 解码为图像
encoded = encoded.view(encoded.size(0), 2048, 1, 1)
image = self.image_decoder(encoded)
return image
```
### 视频解码
```python
class VideoDecoder(nn.Module):
def __init__(self, sid_model, temporal_window=10):
super().__init__()
self.sid = sid_model
self.temporal_window = temporal_window
def forward(self, continuous_spikes):
"""
实时视频解码
continuous_spikes: 连续脉冲流
"""
frames = []
for t in range(0, len(continuous_spikes), self.temporal_window):
window = continuous_spikes[t:t+self.temporal_window]
frame = self.sid(window)
frames.append(frame)
return torch.stack(frames)
```
---
## 与传统方法对比
| 方法 | 数据类型 | 时间分辨率 | 实时性 |
|------|----------|------------|--------|
| fMRI 解码 | BOLD 信号 | 秒级 | ❌ |
| EEG 解码 | 脑电信号 | 毫秒级 | 部分 |
| **SID** | 神经脉冲 | 毫秒级 | ✅ |
---
## 相关技能
- `gnn-transformer-fusion` - 多模态数据融合
- `blend-behavior-guided-neural` - 行为指导神经建模
---
## 来源
- **论文:** Reconstruction of Natural Visual Scenes from Neural Spikes with Deep Neural Networks
- **arXiv:** 1904.13007
- **效用评分:** 0.95
- **学习日期:** 2026-03-21
## Activation Keywords
- 脑网络分析
- 神经科学方法
- 计算神经科学
- 脑连接建模
## Tools Used
- **read**: Read skill documentation and references
- **exec**: Run analysis scripts and data processing
- **web_fetch**: Fetch papers and resources
## Instructions for Agents
1. Read the skill documentation carefully
2. Understand the methodology and key concepts
3. Apply the techniques to the specific problem
4. Document results and insights
## Examples
```python
# Example usage of the skill methodology
# Refer to the Technical Implementation section for details
```
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!