Token导航 LogoToken导航TokenDH.com
研究检索执行命令clawhub未标认证来源可访问clear审计通过

spikecv-helper尖峰 CV 助手

Agent Skill

spikecv-helper 用于查找、检索和筛选相关信息,适合在 OpenClaw 中需要根据关键词、任务场景或来源线索快速定位候选结果时使用。可结合来源仓库、安装命令和原始 README 继续核验具体用法。安装前建议确认权限范围、维护状态,以及是否会触发联网、命令执行或文件读写。

总安装

3,584

周安装

145

GitHub Stars

2

下载量

1,125
OpenClaw

安装说明

本站只整理中文说明和来源信息,不托管安装包,也不代用户安装。

GitHub

来源数

2

许可证

MIT-0

最后核验

2026-05-01

来源状态

来源可访问

安装方式

通过对话安装

复制提示词发给支持本地命令或 Skills 的 AI 助手,先确认命令和权限,再让它执行。

请帮我安装这个 Agent Skill:spikecv-helper(尖峰 CV 助手)
来源仓库:https://github.com/lhs183019/spikecv-helper
安装命令:
openclaw skills install spikecv-helper
安装前请先检查当前环境是否支持对应 CLI,并向我确认将要执行的命令、安装目录、联网范围和文件读写权限;确认后再执行。

命令行安装

复制命令到本机终端执行。该命令会通过 OpenClaw 从第三方来源获取 Skill;本站只展示命令,不托管安装包,也不自动执行。

ClawHubOpenClaw
openclaw skills install spikecv-helper

简介

spikecv-helper 专为 SpikeCV 超高速尖峰相机视觉框架设计,辅助处理相关视觉任务。

  • 适用于高速成像、事件检测或实时视觉分析等科研与工业应用场景。
  • 通过关键词检索和筛选技术资料,快速定位解决方案或调试方法。
  • 使用前应确认权限范围与维护状态,避免触发不必要的联网或计算资源调用。
  • 建议参考原始 README 获取具体接口定义与示例用法。

SKILL.md

name
spikecv-helper
description
Help AI Agents answer questions and execute tasks for SpikeCV, an ultra-high-speed spike camera vision framework. Use when the user asks about spike cameras, SpikeCV repository, spike dataset download, running vision task like tracking, reconstruction through spike vision, etc.

SpikeCV Agent Skill

*last updated: 2026-04-28*

This document is designed to equip an AI Agent (or developer) with the necessary prior knowledge and instructions to answer questions and execute tasks within the SpikeCV repository.

Any command execution or conceptual question should be informed by the context in this document and the attached references.

Before reading: If you're unfamiliar with spike cameras or SpikeCV's architecture, first read references/About_SpikeCV.md.

🧭 Quick Lookup

Use this table to jump to the right section. If it's not here, the answer isn't in this skill.

You want...Go to...
What is SpikeCV?references/About_SpikeCV.md
Install SpikeCV§ Installation
SpikeCV API docsspikecv.readthedocs.io
SpikeCV Project directory structure§ Project Layout
Run spikecv CLI (download, track, reconst)§ CLI Reference
Full publication list (up-to-date)spikecv.github.io/publications.html
Algorithm and it's theorysearch for docs/source/核心操作.rst 🇨🇳 or source code under SpikeCV/spkProc/ 🇬🇧 SpikeCV/examples 🇬🇧, you might get it wrong, so notify user to look up the details in publication for exact theory
SpikeCV event, competition, Team contact, contribution, hardwarereferences/About_SpikeCV.md
Dataset descriptionsreferences/About_SpikeCV.md
Troubleshooting§ Gotchas & Common Errors

Not in this skill? → Defer to the user or suggest SpikeCV website and SpikeCV team contact (spikecv@outlook.com).


📦 Installation

Prerequisites:

  • Python ≥ 3.10
  • Python virtual environment (Conda recommended): see install_miniconda.md for a step-by-step setup guide from scratch.
git clone https://github.com/Zyj061/SpikeCV
cd SpikeCV
pip install .[cli]

Optional extras:

pip install .[tracking]   # for SNNTracker/SpikeSORT

Verify:

spikecv --help

Quick health check (downloads ~40 MB and runs TFSTP reconstruction):

spikecv data download --dataset recVidarReal2019 --agent-used
cd datasets/
spikecv proc reconst --agent-used

🛠 CLI Reference

SpikeCV provides the spikecv command for wrapper interactions. After installation, you can use it to download datasets and run processing algorithms.

All commands accept --agent-used to return structured JSON output. Always include this flag.

Note: Feel free to explore other CLI options and parameters as needed. The following examples only showcase partial subcommands and parameters, the CLI may support additional features or algorithms. Always refer to --help for the most up-to-date command options and usage instructions.

spikecv data download

Download a dataset from the OpenI platform:

spikecv data download --dataset <name> --local-dir <path> --agent-used
DatasetFor Task
recVidarReal2019Reconstruction
motVidarReal2020Tracking

⚠️ Path gotcha: Data lands in <local-dir>/<dataset>/. Default local-dir is datasets/, so your dat files end up at datasets/recVidarReal2019/classA/car-100kmh.dat, NOT recVidarReal2019/classA/car-100kmh.dat.

spikecv proc reconst

Reconstruct visible images from a raw .dat spike stream. Default algorithm: TFSTP.

# From the datasets/ directory:
cd datasets/
spikecv proc reconst --dat-file-path recVidarReal2019/classA/car-100kmh.dat --agent-used

# Or with an absolute/explicit path:
spikecv proc reconst --dat-file-path /path/to/recVidarReal2019/classA/car-100kmh.dat \
                     --yaml-file-path /path/to/recVidarReal2019/config.yaml \
                     --agent-used

Key parameters:

  • --dat-file-path: Path to .dat spike stream file
  • --yaml-file-path: Path to config.yaml for the dataset (default: recVidarReal2019/config.yaml)
  • --begin-idx: Starting frame index (default: 500)
  • --block-len: How many spike frames to process (default: 1500)
  • --stp-d, --stp-F, --stp-f: STP model parameters

⚠️ Path gotcha: The default yaml-file-path is recVidarReal2019/config.yaml (relative to cwd). If you download the dataset using the CLI, it lives under datasets/recVidarReal2019/. You must either cd datasets/ first or pass explicit paths.

spikecv proc track

Run multi-object tracking on spike data. Default algorithm: SNNTracker.

spikecv proc track --scene-idx 0 --metrics --agent-used

Key parameters:

  • --scene-idx: Scene index 0–6
  • --metrics: (Optional) Calculate MOTA/IDF1 metrics (requires ground truth labels)

⚠️ Dataset: Tracking uses motVidarReal2020, not recVidarReal2019.


📁 Project Layout

SpikeCV/
├── SpikeCV/
│   ├── cli/               # CLI command definitions (typer)
│   ├── device/            # Hardware driver for spike cameras
│   ├── examples/          # Standalone test scripts (**NOT for agent use**, use CLI instead)
│   ├── metrics/           # Quantitative evaluation (PSNR, SSIM, MOTA, IDF1, AEPE)
│   ├── spkData/           # Data loaders + config.yaml parsing
│   │   └── load_dat.py    # ParaDict generation, SpikeStream class
│   ├── spkProc/           # ⭐ Core algorithms
│   │   ├── filters/       # STP filter (background removal)
│   │   ├── reconstruction/ # TFI, TFP, TFSTP, SSML
│   │   ├── tracking/      # SNNTracker, SpikeSORT
│   │   ├── detection/     # STDP, Motion-based detection
│   │   ├── recognition/   # RPSNet, SVM, VGG
│   │   ├── depth_estimation/ # SpikeT (Transformer)
│   │   ├── optical_flow/  # SCFlow
│   │   └── augment/       # Data augmentation
│   ├── utils/             # Path helpers
│   └── visualization/     # Video generation from spikes
├── docs/
│   ├── spike_algo.md      # deprecated
│   ├── data_processing.md # deprecated
│   ├── tools.md           # deprecated
│   ├── examples.md        # deprecated
│   └── source/            # 🇨🇳 Sphinx sources (readthedocs)
├── Publications.md        # 📄 Publication list (may be stale — use website instead)
├── README.md / README_en.md
└── CONTRIBUTING.md / CONTRIBUTING_en.md

🌐 Documentation by Language

File(s)LanguageBest for
docs/source/*.rst🇨🇳 ChineseAPI, little Algorithm theory, code examples
SpikeCV/spkProc/**/*.py (source code)🇬🇧 EnglishAlgorithm math + implementation details
README_en.md, CONTRIBUTING_en.md🇬🇧 EnglishSetup, contribution workflow
Publications.md🇬🇧 EnglishPublication list (stale — see website)

🚨 Rules (SHOULD NOT DO)

These are not suggestions — following them prevents errors and hallucinations:

  1. Use CLI, not example scripts — If a task has a spikecv CLI command, use it. Do NOT run SpikeCV/examples/test_snntracker.py or similar standalone scripts directly.
  2. Always include --agent-used — Otherwise the CLI prints log text, not structured JSON.
  3. Do not modify SpikeCV code — Suggest the user contact the team instead (spikecv@outlook.com).
  4. Do not hallucinate external resources — For contacts, purchases, or contributions, only use info from references/About_SpikeCV.md.
  5. For publication/paper queries → always use the websitePublications.md in the repo may be outdated. Point to spikecv.github.io/publications.html as the canonical source.

🐛 Gotchas & Common Errors

SymptomCauseFix
"Data path '...config.yaml' does not exist"--yaml-file-path is relative but you're not in the right directorycd datasets/ first, or pass full path
spikecv proc track failsWrong dataset — using recVidarReal2019 instead of motVidarReal2020Download correct dataset first
--scene-idx out of rangemotVidarReal2020 only has scenes 0–6Use a value in [0, 6]
--scene-idx in range but still brokensome of the scene data might not have uploaded by the developer, check carefully if the corresponding scene appear in the downloaded datasetdon't use the scene that's not downloaded
spikecv not foundCLI not installed or not in PATHRun pip install .[cli] from SpikeCV root
--agent-used not working (no JSON output)Using an older SpikeCV versionUpdate to latest, or check spikecv --help for flag name

适合场景

01

OpenClaw 用户查找和安装 Skill 时

02

用户想查找某类 Agent Skill 时

03

需要根据任务场景推荐可安装能力包时

04

需要对比不同来源的安装命令和来源信息时

能力概览

能力 1

按任务关键词查找相关 Skills

能力 2

展示可复制的安装命令

能力 3

保留来源站点、仓库和原始说明,方便继续核验

能力 4

补充不同宿主或平台的使用分布数据

能力 5

展示第三方安全扫描或审计结果

安装后应在对应宿主中按原始 README 的触发条件使用;具体调用方式请以来源页面和 README 为准。

平台分布

OpenClaw

81.88%
按下载量换算921

安全审计

VirusTotal

通过

ClawScan

通过

Static analysis

通过

权限和风险

执行命令

安装流程涉及命令执行,可能通过 openclaw skills install spikecv-helper 联网下载 Skill 或依赖。用户安装前应确认命令来源、仓库内容和执行环境。

安装前确认

本站仅展示第三方公开信息,不托管安装包,不提供自动安装或运行环境。安装前应自行审查源码、依赖和命令行为。当前只有一个来源,正式发布前建议补源仓库或其他目录站核验。

来源信息

继续浏览同类 Skills