Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/ttddee/Cascade
Node-based image editor with GPU-acceleration.
https://github.com/ttddee/Cascade
gpu-acceleration image-editor node-based vulkan
Last synced: 3 months ago
JSON representation
Node-based image editor with GPU-acceleration.
- Host: GitHub
- URL: https://github.com/ttddee/Cascade
- Owner: ttddee
- License: gpl-3.0
- Created: 2020-09-02T10:11:03.000Z (over 4 years ago)
- Default Branch: master
- Last Pushed: 2024-07-06T20:26:10.000Z (7 months ago)
- Last Synced: 2024-08-02T06:14:35.910Z (6 months ago)
- Topics: gpu-acceleration, image-editor, node-based, vulkan
- Language: C++
- Homepage:
- Size: 7.21 MB
- Stars: 713
- Watchers: 14
- Forks: 31
- Open Issues: 31
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
- awesome-node-based-uis - Cascade - Image editor [OSS] (Applications / 3D & Visuals)
- awesome-cg-vfx-pipeline - Cascade Image Editor - A node-based image editor with GPU-acceleration. (Digital Content Creation Software (DCCs) / 2D)
README
node-based image editor
Welcome to the Cascade project![Usage](https://cascadedocs.readthedocs.io/en/latest/usage.html) - [Quickstart](https://cascadedocs.readthedocs.io/en/latest/quickstart.html) - [Building from Source](https://cascadedocs.readthedocs.io/en/latest/buildingfromsource.html) - [Contributing](https://cascadedocs.readthedocs.io/en/latest/contributing.html) - [Documentation](https://cascadedocs.readthedocs.io/en/latest/index.html)
![Cascade](screenshots/csc-screen03.jpg)
![Cascade](screenshots/csc-screen02.jpg)
## Features at a glance
- Non-destructive, node-based editing workflow.
- Batch processing.
- All image processing is done on the GPU.
- 32 bit (per channel), linear color pipeline.
- Support for the most common color spaces and file formats.
- You can write your own image processing effects using GLSL. A quick introduction on how to do that is [here](https://cascadedocs.readthedocs.io/en/latest/writingshader.html).
- Or you can use existing [ISF shaders](https://cascadedocs.readthedocs.io/en/latest/isfshaders.html) to add effects to your images.## Download
Cascade is free software. If you want to try it out, get started [here](https://cascadedocs.readthedocs.io/en/latest/usage.html).
If you want to get involved or have questions, please join our [Discord](https://discord.gg/SHPHqgKtFM) and see [the page about contributing](https://cascadedocs.readthedocs.io/en/latest/contributing.html).
## Tech
Cascade is written in C++ and runs on Windows and Linux. You will need a [Vulkan-compatible GPU](https://vulkan.gpuinfo.org/) to run the software.
The GUI was created in [Qt](https://www.qt.io/) and all rendering is done on the GPU through [Vulkan](https://www.vulkan.org/) with GLSL as shading language.
For IO and color space conversion we are using [OpenImageIO](https://github.com/OpenImageIO/oiio)/[OpenColorIO](https://opencolorio.org/).
Multithreaded computations on the CPU are done with [TBB](https://github.com/oneapi-src/oneTBB).