# ISP_Algo_Suite **Repository Path**: abonaventure/isp_algo_suite ## Basic Information - **Project Name**: ISP_Algo_Suite - **Description**: No description available - **Primary Language**: Unknown - **License**: Not specified - **Default Branch**: main - **Homepage**: None - **GVP Project**: No ## Statistics - **Stars**: 0 - **Forks**: 0 - **Created**: 2026-06-24 - **Last Updated**: 2026-07-01 ## Categories & Tags **Categories**: Uncategorized **Tags**: None ## README # ISP_Algo_Suite [![License](https://img.shields.io/badge/License-Commercial%20Proprietary-red.svg)](LICENSE) [![Python](https://img.shields.io/badge/Python-3.8+-blue.svg)](https://python.org/) [![C++](https://img.shields.io/badge/C%2B%2B-20-blue.svg)](https://isocpp.org/) **ISP_Algo_Suite** 是 ISP(图像信号处理器)算法仿真与调研仓库,主要用于算法验证、开源对标和研发工具集。本仓库**仅供研发仿真使用**,不参与量产交付。 ## 核心定位 - 聚合 9 套主流开源 ISP 实现(通过 `git subtree` 管理) - 提供 Python/C++ 仿真环境,支持快速算法迭代 - 包含传统 ISP 全链路(DPC、BLC、LSC、Demosaic、AWB、CCM、Gamma、NR、HDR 等) - 集成前沿神经 ISP(UniISP、DeepISP、ModularNeuralISP) - **【新增】** 支持 AI ISP 算法验证与边缘部署仿真 - 完全隔离于量产工程,代码只读,不影响稳定交付 ## 包含的开源仓库 | 仓库名称 | 说明 | |----------|------| | [openISP](https://github.com/cruxopen/openISP) | 教材级 Python ISP 全链路仿真 | | [fast-openISP](https://github.com/QiuJueqin/fast-openISP) | openISP 向量化加速版 | | [ISPLab](https://github.com/yuqing-liu-dut/ISPLab) | C++ 工业级 ISP 仿真库 | | [Infinite-ISP](https://github.com/10x-Engineers/Infinite-ISP) | 三层全栈硬件 ISP(Py+C+Verilog) | | [xkISP](https://github.com/fudan-vip/xkISP) | 国产车载硬件 ISP | | [gst-isp](https://github.com/GStreamer/gst-isp) | GStreamer 实时 ISP 流水线 | | [UniISP](https://github.com/auto-vision-lab/UniISP) | 人机视觉统一自动驾驶 ISP | | [DeepISP](https://github.com/chenlei1994/DeepISP) | 端到端神经 ISP 基线 | | [ModularNeuralISP](https://github.com/SamsungLabs/ModularNeuralISP) | 模块化混合 AI ISP(2025最新) | ## 目录结构 ```text isp_algo_suite/ ├── src/upstream_isp/ # 所有开源代码(只读) │ ├── openISP/ │ ├── fast-openISP/ │ ├── ISPLab/ │ ├── Infinite-ISP/ │ ├── xkISP/ │ ├── gst-isp/ │ ├── UniISP/ │ ├── DeepISP/ │ └── ModularNeuralISP/ ├── demo/ # Python 仿真测试 Demo ├── docs/ # 技术文档、对标文档 └── scripts/ # 运维脚本 ``` ## 使用方式 - **导入开源模块**:所有开源仓库位于 src/upstream_isp/,可直接引用。 - **运行 demo**:进入 `demo/` 目录,执行 `python run_isp_pipeline.py`。 - **手动更新**:执行 `git subtree pull --prefix=src/upstream_isp/ --squash`。 ## 依赖管理 Python 环境:建议使用 venv 或 conda,依赖见各子仓库 requirements.txt。 C++ 部分:需安装 OpenCV 和 CMake(仅仿真使用)。 ## 许可证 本仓库整体采用商业专有许可证,但包含的开源子项目各自遵循其原始许可证(如 MIT、BSD、GPL 等)。使用时请遵守各子项目的许可条款。 ## 维护团队 ISP 工程团队(ISP_Engineering_Team) ## 相关仓库 [Image_Algo_Unified](https://gitee.com/abonaventure/image_algo_unified) — 量产级 ISP 核心工程